Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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. |
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |