Excel In-Cell Code; limit dollar to two decimal placed

IGPOD

New Member
Joined
May 16, 2014
Messages
20
Hello,

I'm having difficulty trying to limit the decimal places to 2... the photo attached will show my code and my issue in cell G3; the reading for the dollars is more than 2 spaces. Is there a better code I should be using for this type of output?
 

Attachments

  • example.png
    example.png
    22.3 KB · Views: 6

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
use TEXT()

So instead of (G2*F3) = Text((G2*F3),"0.00")
OR

Text((G2*F3),"#,##0.00") to get , 1000 seperator


FormulaFindRAte.xlsx
ABCD
1
2
3123.45678fredfred $ 123.46
Sheet2
Cell Formulas
RangeFormula
D3D3=B3&" $ "&TEXT(A3,"0.00")


FormulaFindRAte.xlsx
ABCD
1
2
3123.45678fredfred $ 123.46
4124456789.5fredfred $ 124,456,789.46
Sheet2
Cell Formulas
RangeFormula
D3:D4D3=B3&" $ "&TEXT(A3,"#,##0.00")
 
Upvote 0
Solution
use TEXT()

So instead of (G2*F3) = Text((G2*F3),"0.00")
OR

Text((G2*F3),"#,##0.00") to get , 1000 seperator


FormulaFindRAte.xlsx
ABCD
1
2
3123.45678fredfred $ 123.46
Sheet2
Cell Formulas
RangeFormula
D3D3=B3&" $ "&TEXT(A3,"0.00")


FormulaFindRAte.xlsx
ABCD
1
2
3123.45678fredfred $ 123.46
4124456789.5fredfred $ 124,456,789.46
Sheet2
Cell Formulas
RangeFormula
D3:D4D3=B3&" $ "&TEXT(A3,"#,##0.00")
Thanks for the resolution! I learned yet another tool for my Excel Toolbox.
 
Upvote 0

Forum statistics

Threads
1,223,884
Messages
6,175,175
Members
452,615
Latest member
bogeys2birdies

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top