Msgbox help

  • Thread starter Thread starter JonoB
  • Start date Start date
J

JonoB

I am trying to return a value to a msgbox, but instead of just the
actual value, I want the number to be formatted as fixed (i.e. using
"," as thousand seperator and only 2 decimal places).

My code so far is (and NAP is a named range in my worksheet):

_________

Dim getNAP
Dim msgA

getNAP = Range("NAP")

msgA = MsgBox("The final valuation is " & getNAP)
__________


This works fine, except I want the msgbox to show "The final valuation
is 19,352,654.23" instead of "The final valuation is 19352654.231432"


Thanks for the help.
 
I am trying to return a value to a msgbox, but instead of just the
actual value, I want the number to be formatted as fixed (i.e. using
"," as thousand seperator and only 2 decimal places).

MsgBox("The final valuation is " & Format(getNAP, "##,##0.00"))

HTH,
Merjet
 
Back
Top