Two or more Fields on Summary
How can i show show two or more Fileds value on "Summary Number"?
I tried creating a calculated Field to include 2 or more fields however it shows really weird format on the card i.e. without comma for Numeral values and large font size.
See attached Screenshot of one of the cards.
Best Answer
-
Whenever you are combining fields in a Summary Number it can get complicated.
Here is link on how to handle font size via HTML tags:
KurtF
**Say “Thanks” by clicking the “heart” in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"2
Answers
-
When you concatenate values together MySQL treats them all as text. That's why you lose the automatic formatting of numbers that Domo usually does for you.
You would have to format the number as a string with the commas inserted in the correct spots and then concatenante together. This will be tricky to do based on how the length of the number varies. You should be able to do something like this:
CONCAT('Total quote premium: ',
CASE WHEN LENGTH(`Total Quote Premium`) = 6
THEN CONCAT(LEFT(`Total Quote Premium`, 3), ',' ,RIGHT(`Total Quote Price`,3))
WHEN LENGTH(`Total Quote Premium`)=7
THEN CONCAT(LEFT(`Total Quote Premium`,1), ',', SUBSTRING(`Total Quote Premium`,2,3), ',',
RIGHT(`Total Quote Price`,3)) . . . END
)
You would need to have cases that support each of your possible number lengths. The above snippet only handles items in the hundreds of thousands and millions. Hopefully this is enough for you to get the idea.
KurtF
**Say “Thanks” by clicking the “heart” in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"1 -
Thank You. However,this looks very complicated and it does not resolve the issue with the font size. i wish i had something more easy and simple.
0 -
Whenever you are combining fields in a Summary Number it can get complicated.
Here is link on how to handle font size via HTML tags:
KurtF
**Say “Thanks” by clicking the “heart” in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"2
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 311 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 3.8K Transform
- 656 Datasets
- 115 SQL DataFlows
- 2.2K Magic ETL
- 813 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 81 App Studio
- 45 Variables
- 771 Automate
- 190 Apps
- 481 APIs & Domo Developer
- 77 Workflows
- 23 Code Engine
- 36 AI and Machine Learning
- 19 AI Chat
- AI Playground
- AI Projects and Models
- 17 Jupyter Workspaces
- 410 Distribute
- 120 Domo Everywhere
- 280 Scheduled Reports
- 10 Software Integrations
- 142 Manage
- 138 Governance & Security
- 8 Domo Community Gallery
- 48 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 114 Community Announcements
- 4.8K Archive