0

我有1000列的行100

我想选择2nd6,14,56,37,87列的行?

我想选择5th带有3,5,9,24列的行。

请提出一种不同的方法来解决这个问题?并有一个公式?

4

2 回答 2

0

如果您像@durron597 所说的那样选择VBA,它将是这样的:

'Specific row
Dim row As Integer
row = 2

'Specific columns (I use the letters)
Dim col As String
col = "A" & row & ",C" & row & ",E" & row & ",F" & row & ",I" & row

'Selection of the cells for the example
Range(col).Select
于 2013-05-10T16:40:03.917 回答
0

您可以使用公式栏左端的名称框,查看此链接以获取分步教程

http://www.dummies.com/how-to/content/how-to-select-cells-in-excel-2010.html

http://office.microsoft.com/en-us/excel-help/select-specific-cells-or-ranges-HP010342886.aspx
于 2013-05-10T16:37:51.417 回答