Hi
I want to create a calculated field with 2 conditions so that I can use this field as filter. One of the condition in the ifelse condition is a subset of other.
Because of this I am not getting data for one of the
ifelse(
(sku = “1” OR sku = “2” OR sku = “3”),“Level A”,
({Category}=“Box” OR {Category}=“Bag” OR {Category}=“Tube”),“Stationery”,
“Other”
)
SKU 1,2 & 3 are part of Category “Box”
Result Expected
Create a filter using this calculated field
When selecting filter option “Level A” the data (Sales) of SKU 1,2 & 3 is shown
When select filter option “Stationery” (Sales) of “Box” + “Bag” + “Tube” should show including sales of SKU 1,2 & 3 which is part of Box
Currently
Either “Level A” data comes or “Stationery” total does not count SKU 1,2& 3 sales
Thanks in advance for help!