我这里有这个代码...
For Each cell In worksheet.Cells(8, 2, lastRow, lastCol)
Select Case "What Goes Here"
End Select
Next
我想验证当前单元格所在的列。我可以使用...
cell.Address
但这会返回一个包含列字母和行的字符串。是否有另一种方法可以仅获取列的索引或字母,或者我只需要做类似的事情......
If cell.Address.Contains("A")