Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 53 | |
| 42 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 124 | |
| 105 | |
| 44 | |
| 32 | |
| 24 |