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 All,
I want a measure for MAX value per week and further use this measure in a table which does not have a direct active relationship.
Although, week relatiponship exist based on week number.
Solved! Go to Solution.
Hi @Anonymous ,
Check
Column = CALCULATE(MAX('Table'[value]),FILTER('Table','Table'[weeknum]='Table (2)'[weeknum]&&'Table'[product]='Table (2)'[product]))
Best Regards,
Jay
Hi @Anonymous ,
Check
Column = CALCULATE(MAX('Table'[value]),FILTER('Table','Table'[weeknum]='Table (2)'[weeknum]&&'Table'[product]='Table (2)'[product]))
Best Regards,
Jay
@Anonymous , take week (unsummarized), and these two measure
for product take -lastnonblankvalue(table[value],max(table[product]))
for value take max(Table[Value])
I have attcahed a sample pbix file. Please download.
https://drive.google.com/drive/folders/1E_k7VbgImoTft43JOncSMrwrWtCwVUVx?usp=sharing
I would like to get the MAX value at Item -> week -> MAX(stock_value per item / week ) and the measure Total
For Example : Product_1 -> Week 1 -> 2997
Product_2 -> Week 1-> 316
Measure Total = 3313
Thanks a lot
Hi @Anonymous
I would use
calculate(max([value], allexcept(table,table[week_num]))
Did I resolve your issue? Mark my post as a solution!
Appreciate your Kudos, Press the thumbs up button!!
Regards,
Pranit
User | Count |
---|---|
77 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
99 | |
92 | |
50 | |
47 | |
46 |