E
E
Is there a way to find a column letter in Excel in MS Access. I use this
function in Excel to come up with the column letter:
Function ColLetter(ColNumber As Integer) As String
ColLetter = Left(Cells(1, ColNumber).Address(False, False), _
1 - (ColNumber > 26))
End Function
If I try and add that to my Access module it bombs out on the "Cells" part.
Thanks
function in Excel to come up with the column letter:
Function ColLetter(ColNumber As Integer) As String
ColLetter = Left(Cells(1, ColNumber).Address(False, False), _
1 - (ColNumber > 26))
End Function
If I try and add that to my Access module it bombs out on the "Cells" part.
Thanks