Forum Discussion
onernoa
4 years agoNew Member
% of Total Measure
Hello All I would like to know the % of gr_qty to total for each article in each fiscal week ending dte. In fiscal week ending date 09/07/2022 Site 1 recevied 5 of article 'a' All Sites re...
- Anonymous4 years ago
Hi
Try something like this DAX measure:
DIVIDE( CALCULATE( sum(your_table[gr_qty]) ), CALCULATE( sum(your_table[gr_qty]), ALL(your_table[site]) ) )Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Anonymous
4 years agoNot applicable
Hi
Try something like this DAX measure:
DIVIDE(
CALCULATE(
sum(your_table[gr_qty])
),
CALCULATE(
sum(your_table[gr_qty]),
ALL(your_table[site])
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
- onernoa4 years agoNew Member
Thank you! I was over complicating it so much. Have a great day, José.