Thread: msgbox
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Karen53 Karen53 is offline
external usenet poster
 
Posts: 333
Default msgbox

try:

Dim msg as string

msg = "costid = " & vbCrLf
msg = msg & "linkno = "
msgbox msg
--

Karen53


"ranswert" wrote:

How do I get a msgbox to have to text stacked instead of in a line?
for example have

'costid = ""
linkno = ""

in the msgbox instead of

cost id = "" linkno = ""

Thanks