The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello!
I can't find a solution for this lilttle problem.
Here is the dataset, it has Units and Performance. I want to make a calculated column with a Maximum Performance for each distinct Unit. (hardcoded here below for example purposes)
Should be smth like this:
maximum = CALCULATE(MAX(table[performance]); table[unit] = ***current unit or what...???***))
Any help is appreciated!
Solved! Go to Solution.
Hi @karimkz,
if you are using calculated column:
maximum = CALCULATE(MAX(table[performance]),filter(all(table), table[unit] = earlier(table[unit]) ) ))
(earlier/earliest will return current row in calculated column expression)
maximum =
CALCULATE (
MAX ( table[performance] ),
FILTER (
ALL (table),
table[unit] = EARLIER ( table[unit] )
)
)
Extra bracket removed. As sqlbi.com says "if its not formatted then its not dax" :}
And thank you for the construct it helped to resolve an issue.
Hi @karimkz,
if you are using calculated column:
maximum = CALCULATE(MAX(table[performance]),filter(all(table), table[unit] = earlier(table[unit]) ) ))
(earlier/earliest will return current row in calculated column expression)
What if its a measure? I want the average rate benchmark for any given bid to be calculated across all bids with that same location and job role. The approach of using EARLIER does not work within a measure.
=CALCULATE(AVERAGEX('Bids','Bids'[Hourly Rate]), FILTER(ALL('Projects'), 'Projects'[Location] = 'Projects'[Location] && 'Projects'[Job Role] = 'Projects'[Job Role]))
Did you ever figure out how to incorporate this into a Measure? I'm struggling with something similar.
Hopefully you guys figured this out, amazing how difficult to get this simple stuff done in the context of Power Pivot. I really think they should blend the functionalities of Excel and Power Pivot all together. There are things that can be done in 5 seconds in Excel, but would take 5 days to learn to how to get in PP, and vice versa.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
116 | |
82 | |
75 | |
53 | |
44 |
User | Count |
---|---|
136 | |
128 | |
78 | |
64 | |
63 |