PDA

View Full Version : Solved: Cell Address Value



joms
01-06-2010, 12:10 AM
hi guys, just a quick question..
how to get the cell value given a particular cell address like: $A$29
Thanks. :)

lucas
01-06-2010, 12:15 AM
Not sure I understand. Maybe something like:
Sub a()
MsgBox Range("A29").Address
End Sub

lucas
01-06-2010, 12:26 AM
I think I read it wrong. Maybe:
Sub a()
MsgBox Range("A29").Value
End Sub

joms
01-09-2010, 06:40 AM
hi lucas, thanks..