Forum Discussion
Anonymous
8 years agoNot applicable
Distinct Count based on two Columns - TRICKY
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 ...
- 8 years ago
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
v-jiascu-msft
Microsoft Employee
8 years agoHi 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
- Anonymous8 years agoNot applicable
Hi Dale
Thank you!! Thank You....this was a pain to work out understand tour approah...