Thread
:
i want display the last coloum value in first coloum
View Single Post
#
2
Posted to microsoft.public.excel.programming
Chip Pearson
external usenet poster
Posts: 7,247
i want display the last coloum value in first coloum
Try something like
Dim Rng As Range
Set Rng = Cells(Rows.Count, "A").End(xlUp)
MsgBox Rng.Value
--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
"sajid" wrote in message
...
hello sir
Reply With Quote
Chip Pearson
View Public Profile
Find all posts by Chip Pearson