Forum Discussion
rashidanwar
3 years agoAdvocate II
Creating dynamic categories using DAX
Hi everyone, I have a problem that is more mathetical infact. I would appreciate if someone helps. I have a table as shown below orderline_id order_id qty 1 ...
- 3 years ago
rashidanwar Try the alternate formula I posted:
Measure = VAR __qty = SUM('Table'[Column1]) VAR __Mod = MOD(__qty,9) RETURN IF(__Mod = 0, DIVIDE(__qty,9), TRUNC(DIVIDE(__qty,9))+1)
rashidanwar
3 years agoAdvocate II
Greg_Deckler intelligent!
Thank you, so much.
Greg_Deckler
3 years agoCommunity Champion
rashidanwar Thanks! 🙂