Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
I have these the tables:
How can I filter with two slicers (one for id_user and one for year) and generate the number of distinct cities?
Thank you!
Solved! Go to Solution.
HI @sea
Try this MEASURE
Measure =
CALCULATE (
DISTINCTCOUNT ( Table_Customers[city_customer] ),
SUMMARIZE (
Table_Activities,
Table_Activities[id_customer],
Table_Customers[city_customer]
)
)
HI @sea
Try this MEASURE
Measure =
CALCULATE (
DISTINCTCOUNT ( Table_Customers[city_customer] ),
SUMMARIZE (
Table_Activities,
Table_Activities[id_customer],
Table_Customers[city_customer]
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.