Hi,
So I have an requirement where I want to project the count of customers in a Vertical Bar Chart whose average delivery time is greater than 90. Hence for which I have created this calculation
Customers >= 120 :
Ifelse(avg({Average Delivery Time},[{Customer},extracted(“MM”,created)]) >= 120, 1, 0)
With having create_date(Month) in the X Axis and Customers >= 120(SUM) in the Values i’m getting the accurate results which I have validated.
However lets say I drill it down this to weekly in the Vertical bar chart and no.s are not adding up correctly. Hence can you let me know whats wrong here.