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
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 737 Beast Mode
- 55 App Studio
- 40 Variables
- 684 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 46 Workflows
- 10 DomoAI
- 35 Predict
- 14 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive