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
Hi,
I am using live connection and my sample data looks like this
ID Name
1 Pratap
2 Pratap
3 Raj
4 Raj
5 Harini
expected out put: in card visual
Repeated users: 2
can you please help me
Solved! Go to Solution.
@Anonymous
Measure =
COUNTROWS(
FILTER(
VALUES('Table'[Name]),
CALCULATE(COUNTROWS('Table') > 1)
)
)
@Anonymous
Measure =
COUNTROWS(
FILTER(
VALUES('Table'[Name]),
CALCULATE(COUNTROWS('Table') > 1)
)
)
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.