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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi Experts
All my data is in on FACT Table - i want to count the practices that have product shingrix, based on my slicer for AREA, REGION and TERRITORY....cannot work this out
My Measure
Solved! Go to Solution.
Hi @Invesco ,
Please have a try.
Reached =
CALCULATE (
COUNT ( 'dev_shc_shingrix_activity'[crm_call_name] ),
FILTER (
ALL ( 'dev_shc_shingrix_activity' ),
'dev_shc_shingrix_activity'[Area]
= SELECTEDVALUE ( 'dev_shc_shingrix_activity'[Area] )
&& NOT ( 'dev_shc_shingrix_activity'[channel] )
IN {
"customer_facing_day",
"item_or_sample_drop",
"blank_call_type",
"Outlook_email"
}
)
)
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Invesco ,
Please have a try.
Reached =
CALCULATE (
COUNT ( 'dev_shc_shingrix_activity'[crm_call_name] ),
FILTER (
ALL ( 'dev_shc_shingrix_activity' ),
'dev_shc_shingrix_activity'[Area]
= SELECTEDVALUE ( 'dev_shc_shingrix_activity'[Area] )
&& NOT ( 'dev_shc_shingrix_activity'[channel] )
IN {
"customer_facing_day",
"item_or_sample_drop",
"blank_call_type",
"Outlook_email"
}
)
)
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.