Hi,
I have been trying to add day_of_week(Mon, Tue etc) to the simple table, and need help regarding how to not show it in total row. Here is what I did.
In Look ML I added this measure:
measure: day_of_week_short {
label: "day of week"
type: string
sql:
CASE
WHEN ${day_of_week_index} = 0 THEN 'Mon'
WHEN ${day_of_week_index} = 1 THEN 'Tue'
WHEN ${day_of_week_index} = 2 THEN 'Wed'
WHEN ${day_of_week_index} = 3 THEN 'Thu'
WHEN ${day_of_week_index} = 4 THEN 'Fri'
WHEN ${day_of_week_index} = 5 THEN 'Sat'
WHEN ${day_of_week_index} = 6 THEN 'Sun'
ELSE ''
END;;
}
In the explorer, here is what I see. “Fri” shows up in total row which doesn’t make sense. I know there is another way to add day_of_week but I also need “filling in missing values” feature, so I ended up creating day_of_week_short
as measure.

Is there any way not to show day_of_week_short
in total row?
Thanks