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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a table that includes an Email field and a field called Activated. I need to calculate the number of distinct email addresses where the field name Activated is not blank (has a date in)
I have tried
Solved! Go to Solution.
Hi @spandy34
You can't compare Date data type with string. Please try this.
Total Activated = CALCULATE(DISTINCTCOUNT('Stay Safe Usage Reports'[Email Address]), NOT(ISBLANK('Stay Safe Usage Reports'[Activated])) )
Thats brilliant - thank you so much!
Hi @spandy34
You can't compare Date data type with string. Please try this.
Total Activated = CALCULATE(DISTINCTCOUNT('Stay Safe Usage Reports'[Email Address]), NOT(ISBLANK('Stay Safe Usage Reports'[Activated])) )
User | Count |
---|---|
10 | |
8 | |
5 | |
5 | |
4 |