Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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. |
User | Count |
---|---|
92 | |
88 | |
88 | |
79 | |
49 |
User | Count |
---|---|
156 | |
145 | |
105 | |
72 | |
55 |