Currency format within an equation...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
Try this:

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

Does that help?

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

XL2002, WinXP-Pro
 
Perfect! Thanks Ron...

Ron Coderre said:
Try this:

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

Does that help?

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

XL2002, WinXP-Pro
 
Back
Top