我有1000
行100
列。
我想在2nd
列中选择6,14,56,37,87
行?
我想选择5th
行3,5,9,24
列。
请建议一种不同的方法来解决这个问题? 用公式?
答案 0 :(得分: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
答案 1 :(得分:0)
如果你选择VBA作为@durron597说,那将是这样的:
'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