Displaying a single row on a card
I'm in the process of building a drill down report. At the bottom I'm looking for a single page of Column names and text.
Ex:
Order #: 8675-309
Customer: Jenny
Order Date: 2021-04-07
Any help would be appreciated.
Best Answer
-
Another alternative is to utilize a Table card and do something similar with your three different columns and split those out into different beast modes, dropping those into your table instead. This will have a little better formatting than a text card.
Column 1:
CONCAT( 'Order Number: ', FLOOR(RAND() * 10000), '\n', 'Customer Info', '\n', '\n', '(Cust Name)', '\n', '(Street Add1)', '\n', '(Street Add2)', '\n', '(City ST Zip)' )
Column 2:
CONCAT( 'Tracking #: ', FLOOR(RAND() * 10000), '\n\n', 'Customer Info', '\n', '\n', '(Bus Name)', '\n', '(Bus Add1)', '\n', '(Bus Add2)', '\n', '(City ST Zip)' )
Columns 3:
CONCAT( 'Inv # ', FLOOR(RAND() * 10000), '\n', 'Deliver To', '\n', '\n', '(Dest Name)', '\n', '(Dest Add1)', '\n', '(Dest Add2)', '\n', '(City ST Zip)' )
You'll need to replace the text strings with your actual field names. Also, ignore the FLOOR(RAND()) code as I just randomly generated some numbers for testing out the visualization. You can replace that all with the column holding the respective data element.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Answers
-
Hi @FME_Cavinder, you can use a concat function to get that name and text field. For example, if your dimension is 'OrderID', then
CONCAT ('Order #:', 'OrderID')
This can be done for as many columns of your drill-down table report as you need.
Let me know if you are after something else.
6 -
@FME_Cavinder You could also create a table card that contains the Order #, Customer, and Order Date columns. Depending on your aesthetic preference, you could transpose the columns so that the header and text are aligned horizontally instead of vertically.
1 -
@MichelleH Thanks for the suggestion, however I'm working with upwards of 40 fields worth of data. I'm trying to see how to condense them down into one coherent display screen. Like below:
Order # ______ (?) Tracking # Inv # Status Customer Info Pick up From Deliver To (Cust Name) (Bus Name) (Dest Name) (Street Add1) (Bus Add1) (Dest Add1) (Street Add2) (Bus Add2) (Dest Add2) (City ST Zip) (City ST Zip) (City ST Zip)
0 -
The ability to have many fields displayed as a one pager is not currently available as a Chart Type. An option that comes to mind is to create a custom app, which would provide you with additional control over the visualisation experience (https://developer.domo.com/docs/dev-studio/dev-studio-overview).
7 -
You could get close using CONCAT and a text card and changing the font size in the General properties. You'd also use RPAD (right pad a string with another character up to the given number of characters) and the '\n' (newline) character. For example:
CONCAT( RPAD('Year:', 30, ' '), RPAD('Month:', 30, ' '), RPAD('Date:', 30, ' '), '\n', RPAD(`year`, 30, ' '), RPAD(`month`, 30, ' '), RPAD(`dt`, 30, ' '), '\n' )
Because Domo isn't using a fixed-width font it's difficult to get all of your fields to line up properly but this gets you closer to what you're wanting.
RPAD('Year:', 30, ' ')
This is telling Domo to add spaces until the resulting string is 30 characters long.
This is the result:
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**1 -
Another alternative is to utilize a Table card and do something similar with your three different columns and split those out into different beast modes, dropping those into your table instead. This will have a little better formatting than a text card.
Column 1:
CONCAT( 'Order Number: ', FLOOR(RAND() * 10000), '\n', 'Customer Info', '\n', '\n', '(Cust Name)', '\n', '(Street Add1)', '\n', '(Street Add2)', '\n', '(City ST Zip)' )
Column 2:
CONCAT( 'Tracking #: ', FLOOR(RAND() * 10000), '\n\n', 'Customer Info', '\n', '\n', '(Bus Name)', '\n', '(Bus Add1)', '\n', '(Bus Add2)', '\n', '(City ST Zip)' )
Columns 3:
CONCAT( 'Inv # ', FLOOR(RAND() * 10000), '\n', 'Deliver To', '\n', '\n', '(Dest Name)', '\n', '(Dest Add1)', '\n', '(Dest Add2)', '\n', '(City ST Zip)' )
You'll need to replace the text strings with your actual field names. Also, ignore the FLOOR(RAND()) code as I just randomly generated some numbers for testing out the visualization. You can replace that all with the column holding the respective data element.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2 -
Thanks for the suggestions.
I'm a little surprised that this had not been addressed before, but hopefully in a newer release.
While a headache for now I might go with the table view option and see how it turns out.
Again thanks for the suggestions.
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 297 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive