Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / September 2007

Tip: Looking for answers? Try searching our database.

Format currency in MsgBox

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Paul Breslin - 24 Sep 2007 20:16 GMT
Hello -

Windows XP
Excel 2003

What I am trying to do is format a string for output in a message box for
currency.
Looking at the code below, when the application opens, the COSTS worksheet
is selected.
Variables are selected from the worksheet and displayed in a message box.
On the worksheet the cells in question are formatted for currency.
The message box opens fine and displays but not in the format I want.
The variables should be currency; that is, $1,234,567.00
What is being displayed is 1234567 - no dollar sign, no commas, no cents.

Is there some way to do this?

Thanks,
Paul
-------------
Private Sub Workbook_Open()

Application.WindowState = xlMaximized

myVar1 = Worksheets("COSTS").Range("C23")
myVar2 = Worksheets("COSTS").Range("C56")
myVar3 = Worksheets("COSTS").Range("C138")

 'Open a Message Box

Dim Msg, Style, Title, Response

Msg = "Total Value of Category A = " & myVar1 & vbCrLf & vbCrLf & " Total
Value of Category B = " & myVar2 & vbCrLf & vbCrLf & " Total Value of
Category C = " & myVar3

Style = vbOKOnly + vbInformation ' Define buttons.
Title = "     COSTS of REPAIRS"    ' Define title.

Response = MsgBox(Msg, Style, Title)
If Response = vbOKOnly Then

End If

End Sub
Dave Peterson - 24 Sep 2007 20:39 GMT
Format the variable (all of them??) the way you want:

myVar1 = format(Worksheets("COSTS").Range("C23"), "$#,##0.00")

> Hello -
>
[quoted text clipped - 41 lines]
>
> End Sub

Signature

Dave Peterson

Bob Phillips - 24 Sep 2007 20:41 GMT
Use the Text property, like so

myVar1 = Worksheets("COSTS").Range("C23").Text

Signature

---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

> Hello -
>
[quoted text clipped - 41 lines]
>
> End Sub
Paul Breslin - 25 Sep 2007 20:12 GMT
Thank you to the responders.  Paul

> Hello -
>
[quoted text clipped - 41 lines]
>
> End Sub

Rate this thread:






 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.