Currency format within an equation...

T

tvh

I'm using the following formula in a cell:
="@" & " " & 'Per Job Analysis'!E49 & "/Mile"

How can I change the 'Per Job Analysis'!49 into currency format?

Right now the cell returns: "@ 0.7/Mile"
I would like it to return: "@ $0.70/Mile"

Thanks!
 
R

Ron Coderre

Try this:

="@" & " " & TEXT('Per Job Analysis'!E49,"$0.00") & "/Mile"

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
T

tvh

Perfect! Thanks Ron...

Ron Coderre said:
Try this:

="@" & " " & TEXT('Per Job Analysis'!E49,"$0.00") & "/Mile"

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
Top