Pivot tables
I dunno why, but some of the time I cannot wrap my head around pivot tables. Here is what I want to do and here is how my data is structured and the column headers….
Account | A Prime_TV Revenue | B Prime_TV Revenue | A Premium_TV Revenue | B Premium_TV Revenue
Pivot table I want…
TV Category | Company A. | Company B
Prime_TV. | $500000 |. $6000000
Premium_tv. |. $55000. |. $5000
Is this possible given the data structure that i have?
Best Answer
-
since there are only 4 columns you can directly use a SQL dataflow to convert the data in the format you want and avoid any pivot stuff in ETL:
select Account, 'A' as company, 'Prime_TV' as TV Category, A Prime_TV Revenue as value from Table
union all
select Account, 'A' as company, 'Premium_tv' as TV category, A Premium_TV Revenue as value from Table
union all
select Account, "B" as company, "Prime_TV" as TV category, B Prime_TV Revenue as value from Table
union all
select Account, "B" as company, "Premium_tv" as TV category, B Premium_TV Revenue as value from Table
In the above code, Table is the name of the datasource where this data is stored. Once you have the data in the above format, you can just create a pivot table card and drag 'company' field to Columns and 'TV category' field to Rows and the 'value' column to Values and you should get the data in the format you want in a card.
0
Answers
-
since there are only 4 columns you can directly use a SQL dataflow to convert the data in the format you want and avoid any pivot stuff in ETL:
select Account, 'A' as company, 'Prime_TV' as TV Category, A Prime_TV Revenue as value from Table
union all
select Account, 'A' as company, 'Premium_tv' as TV category, A Premium_TV Revenue as value from Table
union all
select Account, "B" as company, "Prime_TV" as TV category, B Prime_TV Revenue as value from Table
union all
select Account, "B" as company, "Premium_tv" as TV category, B Premium_TV Revenue as value from Table
In the above code, Table is the name of the datasource where this data is stored. Once you have the data in the above format, you can just create a pivot table card and drag 'company' field to Columns and 'TV category' field to Rows and the 'value' column to Values and you should get the data in the format you want in a card.
0
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 310 Workbench
- 7 Cloud Amplifier
- 9 Federated
- 3K Transform
- 113 SQL DataFlows
- 651 Datasets
- 2.2K Magic ETL
- 4K Visualize
- 2.5K Charting
- 795 Beast Mode
- 78 App Studio
- 44 Variables
- 755 Automate
- 187 Apps
- 480 APIs & Domo Developer
- 71 Workflows
- 17 DomoAI
- 40 Predict
- 17 Jupyter Workspaces
- 23 R & Python Tiles
- 407 Distribute
- 118 Domo Everywhere
- 279 Scheduled Reports
- 10 Software Integrations
- 141 Manage
- 137 Governance & Security
- 8 Domo Community Gallery
- 47 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 113 Community Announcements
- 4.8K Archive