我想要獲取colum上的值和行上的值。試圖使用MATCH vba excel
我這樣做,它的工作原理:
linha = Application.WorksheetFunction.Match(nome, Sheets(2).Range("a:a"), 0)
但是,如果我這樣做,它不工作。 Supose是相同的代碼(錯誤1004)
x = Sheets(2).Cells(Rows.Count, 1).End(xlUp).Row
linha2 = Application.WorksheetFunction.Match(nome, Sheets(2).Range(Cells(1, 1), Cells(x, 1)), 0)
感謝你「.Range(Sheets(2).Cells(1,1),Sheets(2).Cells(x,1)」 –
@GabrielLemos不客氣,很高興工作:) – sktneer