Concatenate text and currency issue
I am trying to concatenate or JOIN a column with currency and standard text - I can do this, however it doesn't show zeros on the currency, for example; instead of £2.00 I get £2
Can anyone help as to how I can get the formula to exactly replicate the currency value. Obviously adding a zero to every result isn't an option as I don't want to have £1.570 for example.
Answers
-
Hi @PeterR
I think this might serve you:
="Was £" + IFERROR(IF((LEN(MID([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row), 3)) - 1) = 2, IFERROR(LEFT([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row) - 1), [Std Sell Price in VAT]@row) + MID([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row), 3), IF((LEN(MID([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row), 3)) - 1) = 1, IFERROR(LEFT([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row) - 1), [Std Sell Price in VAT]@row) + MID([Std Sell Price in VAT]@row, FIND(".", [Std Sell Price in VAT]@row), 3) + 0, "")), [Std Sell Price in VAT]@row + ".00")
-
That gives me unparseable unfortunately.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!