Forum Discussion
boraJustmop
2 years agoFrequent Visitor
ALLEXCEPT and ALL function does not work as I expected in DAX
Hi Everyone, I'm trying to use All/Allexcept functions in some calculations for some case scenarios. I was working with Qlik & QlikSense before and this is easly applicable on Qlik but I could n...
Anonymous
2 years agoNot applicable
Hi boraJustmop ,
Try to modify your dax formula:
Test2 Appointment Qty =
CALCULATE(
SUM(Appointment[m_appointment_qty]),
ALL(
Appointment[data_flag],
Appointment[Availability],
Appointment[dim_day_diff],
Appointment[cleaner_id]
),
Appointment[table_type] = "Appointment",
Appointment[dim_calculation_type] = "Original"
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
boraJustmop
2 years agoFrequent Visitor
Hi,
Recommended solutions did not work. As I attached the screenshot, by availability & dim_day_diff selection, I expect table 1 and table 3 should not be effected.