Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a msgbox alert that say's something like:
msgbox "Cell A1 displays XXXX " I want the XXXX to be whatever the value is in cell A1. Is this possible?? Regards Corey |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Corey,
Dim MyRange as range set MyRange=Range("A1") msgbox "Cell " & MyRange.address(false,false) & " displays " & MyRange.Text You now know the difference between .Value and .Text, but as the msgbox text says "displays", I assume .Text. NickHK "Corey" wrote in message ... I have a msgbox alert that say's something like: msgbox "Cell A1 displays XXXX " I want the XXXX to be whatever the value is in cell A1. Is this possible?? Regards Corey |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks again
-- Regards Corey |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to display remaining txt file which overflowed MsgBox display? | Excel Discussion (Misc queries) | |||
display cell value in msgbox formatted as % | Excel Discussion (Misc queries) | |||
MsgBox Display | Excel Programming | |||
Display of $ in Msgbox | Excel Programming | |||
Specify font for MsgBox display? | Excel Programming |