I am working on a pivot table in Amazon QuickSight with the following structure:
- Rows:
created_at
(Month) - Columns:
goods
- Values:
cost (sum)
id (count)
id (count (avg))
id (count (delta))
I have a couple of questions regarding customization:
- Is it possible to hide or disable specific value columns in the pivot table? For instance, I want to display only the
cost (sum)
column while keeping the rest hidden or available only in the total summary. - Can I add calculated fields as additional value columns? Specifically, I want to include the following calculated values and display them as summaries:
periodOverPeriodPercentDifference(sum(cost), {created_at}, MONTH, 1)
periodOverPeriodDifference(sum(cost), {created_at}, YEAR, 1)
periodOverPeriodPercentDifference(sum(cost), {created_at}, YEAR, 1)
These calculated fields need to appear in the summary(total) section of the pivot table, or as a separate column
I would greatly appreciate any guidance or suggestions on achieving this setup.