Forum Discussion
jimrosser
2 years agoHelper III
Measrue with If statement based on Count
I've got a table that I only want the amount not sum of total for qty on hand for day 7 of the week. The measure below calculates correctly unless there are multiple entries for the same day of that...
- Anonymous2 years ago
Hi jimrosser
Please try the following Dax:RINVT Running Total in DAX = VAR _Total = CALCULATE(SUM(store_invt[ty_on_hand_qty]), FILTER( ALL(calendar_dim), 'calendar_dim'[wk_day_nbr] = 7), VALUES ( 'calendar_dim'[wk_nbr] ) ) RETURN IF(store_invt[COUNT]=1,_Total,_Total/store_invt[COUNT])If the formula doesn't solve your problem, please provide sample data that fully covers your issue(pbix file or table) and the expected outcome based on the sample data you provided.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi jimrosser
Please try the following Dax:
RINVT Running Total in DAX =
VAR _Total = CALCULATE(SUM(store_invt[ty_on_hand_qty]),
FILTER(
ALL(calendar_dim),
'calendar_dim'[wk_day_nbr] = 7),
VALUES ( 'calendar_dim'[wk_nbr] )
)
RETURN
IF(store_invt[COUNT]=1,_Total,_Total/store_invt[COUNT])
If the formula doesn't solve your problem, please provide sample data that fully covers your issue(pbix file or table) and the expected outcome based on the sample data you provided.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.