• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Text function& concatenate

Ufoo

Member
Hello, suppose I want $25,000 to be $25,000 paid. I will use this formula: =TEXT(G4,"$ #,###,###")&" paid". But this formula does not work with the currency of my country, whose symbol in excel is TZS. Please help. Thanks
 
or
=TEXT(G4,"\T\Z\S #,###,### \P\a\i\d")
or
=TEXT(G4,"""TZS"" #,###,### ""Paid""")

Best Method
Actually the best method would be to use a Custom Number Format
Select the cell
Ctrl+1
Number, Custom
enter "TZS" #,###,### "Paid"

Apply

Using this the cell still contains the value and can be used in subsequent formulas, where as the Text() functions converts the number to unusable text
 
Back
Top