Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
The below measure sums [Charged_Hrs] only when 'ClientsList'[ClientMH3Name] = "HSE Cover".
How do I modify this to sum [Charged_Hrs] only when 'ClientsList'[ClientMH3Name] = "HSE Cover"
OR
'ClientsList'[USER5] = "HSE Cover"
Cover Hrs =
CALCULATE (
CALCULATE (
CALCULATE (
SUM ( vw_ShowChargesAndPayForVisits[Charged_Hrs] ),
FILTER ( 'ClientsList', FIND ( "HSE Cover", 'ClientsList'[User5],, 0 ) ),
FIND ( "HSE Cover", 'ClientsList'[ClientMH3Name],, 0 )
),
USERELATIONSHIP ( 'Year'[Year], vw_ShowChargesAndPayForVisits[Year] )
),
USERELATIONSHIP ( 'Week'[Week], vw_ShowChargesAndPayForVisits[Weeks] )
)
Solved! Go to Solution.
Hi @Qotsa ,
If my above post helps, could you please consider Accept it as the solution to help the other members find it more quickly. thanks!
Best regards,
Dina Ye
Hi @Qotsa
Please use the formula below instead:
Cover Hrs = CALCULATE ( CALCULATE ( CALCULATE ( SUM ( vw_ShowChargesAndPayForVisits[Charged_Hrs] ), FILTER ( ClientsList, FIND ( "HSE Cover", 'ClientsList'[User5],, 0 ) || FIND ( "HSE Cover", 'ClientsList'[ClientMH3Name],, 0 ) ), USERELATIONSHIP ( 'Year'[Year], vw_ShowChargesAndPayForVisits[Year] ) ), USERELATIONSHIP ( 'Week'[Week], vw_ShowChargesAndPayForVisits[Weeks] ) ) )
Best regards,
Dina Ye
Hi @Qotsa ,
If my above post helps, could you please consider Accept it as the solution to help the other members find it more quickly. thanks!
Best regards,
Dina Ye
Works great. TY.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |