Display Decimal Places
I was wondering if anyone had a solution for this...
I hvae a field I built in Beast Mode that has this CASE logic...
(CASE
WHEN `cost` IS NULL THEN 'n/a'
ELSE CONCAT('$',ROUND(`Cost`,0))
END)
When i try and put 2 in for the round places and if the value does not have any decimal places to strat with in the raw data it will not add those two decimnal places. How do I force two decial places via Beat Mode for all numbers regardless if the original source data has 0, 1, 2, 3, etc decimal places
Best Answer
-
A solution might be:
CASE WHEN 'cost' IS NULL THEN 0
ELSE 'cost'
ENDIt will have a 0 rather than 'n/a' which may not work for you, but this would allow you to choose the format of these values as currency and choose to have 2 decimal places.
My thinking is that having 'n/a' or a concatenated value with '$' turns every value into a text string rather than a number which doesn't allow you to format as currency or choose the decimals needed.
Let me know if this works for you!
0
Answers
-
A solution might be:
CASE WHEN 'cost' IS NULL THEN 0
ELSE 'cost'
ENDIt will have a 0 rather than 'n/a' which may not work for you, but this would allow you to choose the format of these values as currency and choose to have 2 decimal places.
My thinking is that having 'n/a' or a concatenated value with '$' turns every value into a text string rather than a number which doesn't allow you to format as currency or choose the decimals needed.
Let me know if this works for you!
0
Categories
- All Categories
- 1.2K Product Ideas
- 1.2K Ideas Exchange
- 1.3K Connect
- 1.1K Connectors
- 273 Workbench
- Cloud Amplifier
- 3 Federated
- 2.7K Transform
- 78 SQL DataFlows
- 524 Datasets
- 2.1K Magic ETL
- 2.9K Visualize
- 2.2K Charting
- 433 Beast Mode
- 22 Variables
- 510 Automate
- 114 Apps
- 388 APIs & Domo Developer
- 8 Workflows
- 26 Predict
- 10 Jupyter Workspaces
- 16 R & Python Tiles
- 331 Distribute
- 76 Domo Everywhere
- 255 Scheduled Reports
- 65 Manage
- 65 Governance & Security
- 1 Product Release Questions
- Community Forums
- 40 Getting Started
- 26 Community Member Introductions
- 67 Community Announcements
- 4.8K Archive