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.
I have a table in whic i have
Date and email is
I want to create a table in which i can view the last 30 days not active emailis id and count of that emails id
Regards
Ahmed
@Ahmedkhan0503 , for not active you should prefer an email table with distinct email ids and joined to this table.
Then create a measure like
Last 30 days = calculate(count(Table), filter(Table, Table[Date]>=today() -30 && Table[Date]<=today()))
not active in 30 =if(isblank([Last 30 days]), 1, blank())
not active in 30 count =sumx(values(Email[Email]), if(isblank([Last 30 days]), 1, blank()))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
7 | |
4 | |
4 |