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!View all the Fabric Data Days sessions on demand. View schedule
Hi Experts
How would you alter the formula as shown so
OHA_OHP = CALCULATE(COUNTROWS(Data),FILTER(Data,Data[CaseType]="Face to Face Assessment"), CONTAINSROW({"IMA HML OHP OffSite","IMA HML OHP OnSite","IMA Network OHP","OHP Review 30 Minutes", "OHP Case Teleconference call (40 mins)"},Data[WorkType]))
So When CaseType Column is filter for Face to Face Assessment criteria and then we look at the work type column (here i need to count only distinct Values) as shown....
Solved! Go to Solution.
Hi @Anonymous,
Try this measure please.
OHA_OHP =
COUNTROWS (
FILTER (
ALL ( data[CaseType], data[WorkType] ),
Data[CaseType] = "Face to Face Assessment"
&& data[WorkType]
IN {
"IMA HML OHP OffSite",
"IMA HML OHP OnSite",
"IMA Network OHP",
"OHP Review 30 Minutes",
"OHP Case Teleconference call (40 mins)" }
)
)
Best Regards,
Dale
Hi @Anonymous,
Try this measure please.
OHA_OHP =
COUNTROWS (
FILTER (
ALL ( data[CaseType], data[WorkType] ),
Data[CaseType] = "Face to Face Assessment"
&& data[WorkType]
IN {
"IMA HML OHP OffSite",
"IMA HML OHP OnSite",
"IMA Network OHP",
"OHP Review 30 Minutes",
"OHP Case Teleconference call (40 mins)" }
)
)
Best Regards,
Dale
Hi Dale
Thank you!! Thank You....this was a pain to work out understand tour approah...
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!