VBA_BEGINNER - I am a currency analyst, soon to be salesman, hoping to become programmers. I'm starting with VBA for two reasons. 1) I thought it'd be a good primer to the art of programming. It's the one language that can be picked up relatively quickly at little to no cost, so if I don't enjoy...
Hi Deb,
Thank you. I wasn't sure how active this forum was, but given your quick reply, it looks pretty active! I'll read through the three first green sticky topics, as you recommended. It was a bit difficult navigating through the website, but I'll try the archive of posts.
Thank you for...
Hello,
If you use the sub:
Sub ShowRows()
MsgBox Rows.Address
End Sub
a Message Box will appear with the value $1:$1048576 in Excel 2010. However, if you change the sub from Rows to Columns:
Sub ShowColumns()
MsgBox Columns.Address
End Sub
it returns the same value. Shouldn't it...