Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have table 1 listed below in my dataset. What I want to do is to sum all the net requirements by Destination and File Month, and then take the average of net requirements by file month for each destination. How would I do that in a measure? The 'material' column is irrelevant to the calculation. The intermediate calculation basically sums net requirements listed in table 1 by destination and file month. The desired result averages the intermediate calculation table by destination. Thank you!
Here's the sample data:
Destination | File Month | Material | Net Requirements |
Germany | Jan-21 | A | 45 |
Germany | Jan-21 | B | 98 |
Germany | Jan-21 | C | 65 |
Germany | Feb-21 | D | 78 |
Germany | Feb-21 | B | 84 |
Germany | Feb-21 | A | 53 |
USA | Jan-21 | A | 96 |
USA | Jan-21 | B | 52 |
USA | Jan-21 | C | 35 |
USA | Jan-21 | D | 5 |
USA | Jan-21 | E | 48 |
USA | Jan-21 | F | 32 |
USA | Jan-21 | G | 56 |
USA | Feb-21 | A | 35 |
USA | Feb-21 | C | 23 |
USA | Feb-21 | F | 98 |
UK | Jan-21 | D | 45 |
UK | Jan-21 | E | 25 |
UK | Jan-21 | F | 95 |
UK | Feb-21 | G | 78 |
UK | Feb-21 | A | 15 |
UK | Feb-21 | C | 25 |
UK | Feb-21 | F | 35 |
UK | Feb-21 | B | 95 |
UK | Feb-21 | D | 87 |
Solved! Go to Solution.
@Anonymous
you can try this
Measure =
VAR tbl=SUMMARIZE('Table','Table'[Destination],'Table'[File Month],"net",sum('Table'[Net Requirements]))
return AVERAGEX(tbl,[net])
Proud to be a Super User!
@Anonymous
you can try this
Measure =
VAR tbl=SUMMARIZE('Table','Table'[Destination],'Table'[File Month],"net",sum('Table'[Net Requirements]))
return AVERAGEX(tbl,[net])
Proud to be a Super User!
Wow, that works perfectly, thank you!
you are welcome
Proud to be a Super User!
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
48 | |
47 |