Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I want to find the max value for each name.
Here is a sample of my data;
I added tried using this formula in a calculated column (MAX LEVEL) -
Solved! Go to Solution.
Hi @vincenardo
MAX LEVEL =
MAXX (
FILTER (
'HC-1 INSTALL PBI Service Resources with Skill',
'HC-1 INSTALL PBI Service Resources with Skill'[Name]
= EARLIER ( 'HC-1 INSTALL PBI Service Resources with Skill'[Name] )
),
'HC-1 INSTALL PBI Service Resources with Skill'[Installer Skill Name Lvl]
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
or alternatively, leveraging context transition:
MAX LEVEL =
CALCULATE (
MAX ( 'HC-1 INSTALL PBI Service Resources with Skill'[Installer Skill Name Lvl] ),
ALLEXCEPT (
'HC-1 INSTALL PBI Service Resources with Skill',
'HC-1 INSTALL PBI Service Resources with Skill'[Name]
)
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @vincenardo
MAX LEVEL =
MAXX (
FILTER (
'HC-1 INSTALL PBI Service Resources with Skill',
'HC-1 INSTALL PBI Service Resources with Skill'[Name]
= EARLIER ( 'HC-1 INSTALL PBI Service Resources with Skill'[Name] )
),
'HC-1 INSTALL PBI Service Resources with Skill'[Installer Skill Name Lvl]
)
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |