我有1000
列的行100
。
我想选择2nd
有6,14,56,37,87
列的行?
我想选择5th
带有3,5,9,24
列的行。
请提出一种不同的方法来解决这个问题?并有一个公式?
我有1000
列的行100
。
我想选择2nd
有6,14,56,37,87
列的行?
我想选择5th
带有3,5,9,24
列的行。
请提出一种不同的方法来解决这个问题?并有一个公式?
如果您像@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
您可以使用公式栏左端的名称框,查看此链接以获取分步教程
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