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
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 480 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 72 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!