-
Suggestion
-
Resolution: Unresolved
User Problem
I want to hide duplicate values in my table chart to remove repetitive values in my data and provide a cleaner display on the chart.
The old table charts had this setting, but it is no longer available in the new table charts.
Suggested Solutions
Add a chart setting to give the user the ability to hide duplicate values.
Current Workarounds
Add a "Apply formula" step on your column with the custom formula:
CASE WHEN ROW_NUMBER() OVER (PARTITION BY "Column Name") = 1 then "Column Name" ELSE NULL END