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.
Hello, I just have a quick question.
So, we have a table called "Not_messaged' that has information about candidates. These fields are lastMessageDate (Date field), id (integer field), NotesMessageDate (Date field), and CallNotesLogDate (Date field).
what we want is to return a distinct count of ids that:
Do NOT have messagedLastSentDate before today's date
OR DOES NOT have callNotesLogdate = todays date
OR DOES NOT have NotesLogDate = today's date
I am trying to come up with a DAX expression that can return a distinct count of the ids. However, we are getting stuck because we're not good at DAX expressions.
Solved! Go to Solution.
You can put as many conditions as you want in a FILTER.
CALCULATE (
DISTINCTCOUNT ( Not_messaged[id] ),
FILTER (
Not_messaged,
Not_messaged[lastMessageDate] >= TODAY ()
|| Not_messaged[callNotesLogdate] <> TODAY ()
|| Not_messaged[NotesLogDate] <> TODAY ()
)
)
You can put as many conditions as you want in a FILTER.
CALCULATE (
DISTINCTCOUNT ( Not_messaged[id] ),
FILTER (
Not_messaged,
Not_messaged[lastMessageDate] >= TODAY ()
|| Not_messaged[callNotesLogdate] <> TODAY ()
|| Not_messaged[NotesLogDate] <> TODAY ()
)
)
Seems like you just don't want today's date. You can add a date filter to the visual (or page/report)! Attached is an example of a date filter using the relative date filter type.
@Anonymous please provide sample data and desired output.
I'd use the distinctcount function for DAX and then just use visual level filters to achieve what you're looking for
So something similar to
DISTINCTCOUNT('Not_messaged'[id])
I see, for the visual filters, can you do IF/OR statements?
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 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |