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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top