Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello,
I am discovering DAX and I would need some help understanding what I do wrong in building my measures.
I have the following measure:
-------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
which counts the number of clients that have been contacted during the period between the dates that are choosen by the user (based on the Date[Date] column.
I want to also calculate the number of clients that have been contacted 30 days prior to the first date choosen by the user. SO I defined the following measure:
-------------------------------------------------------------------------------------
-------------------------------------------------------------------------------------
but I get the same number in Contacted Clients and Contacted Clients 30 days Prior
I suppose I do not understand exactly how it should work, any tips on what needs correcting? Is there an issue that the Date and Communication tables are linked using a Many to one relationship table between Communication[Message Created At] and Date[Date] column?
I have tried ALL(Communication) as well to make sure to ignore the filters but I suppose it is not the issue.
Thank you very much for any tips on how to correct this!
Hi @at01
VAriables in DAX are immutable. Their value won't change after declaration. So that calculate will not have any effect whatsoever. Try this:
Contacted Clients =
VAR startDate =
MIN ( 'Date'[Date] )
VAR endDate =
MAX ( 'Date'[Date] )
RETURN
CALCULATE (
DISTINCTCOUNT ( Communication[Client ID] ),
FILTER (
Communication,
Communication[Message Created At] >= startDate
&& Communication[Message Created At] <= endDate
)
)
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
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.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |