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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
Hopefully I have put this in the right place.
I am trying to make a cluster chart with the following information: Y axis # number users, X axis location.
I've tried the following to get a filtered measure on the last login date that I found online but I'm just getting the total count.. The date filter isn't being applied.
Any ideas?
Solved! Go to Solution.
HI @FlyingBlind,
You can try to use the following measure formula if it stable for your requirement: (get the last date based on table records as condition to calculate the percent of total)
COUNT_Logins_After_May =
VAR _lastdate =
CALCULATE (
MAX ( Users[Last Login] ),
FILTER ( ALLSELECTED ( Users ), [Last Login] <> BLANK () )
)
RETURN
DIVIDE (
CALCULATE ( [COUNT_Logins], Users[Last Login] >= _lastdate ),
[COUNT_Logins]
)
Regards,
Xiaoxin Sheng
HI @FlyingBlind,
You can try to use the following measure formula if it stable for your requirement: (get the last date based on table records as condition to calculate the percent of total)
COUNT_Logins_After_May =
VAR _lastdate =
CALCULATE (
MAX ( Users[Last Login] ),
FILTER ( ALLSELECTED ( Users ), [Last Login] <> BLANK () )
)
RETURN
DIVIDE (
CALCULATE ( [COUNT_Logins], Users[Last Login] >= _lastdate ),
[COUNT_Logins]
)
Regards,
Xiaoxin Sheng
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!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 17 | |
| 14 | |
| 13 |