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.
Hi all,
Hi all,
I have a data table as part of my report - however, I have 3 separate dates that I need it to associate with across two tables. For example:
Contact table - Latest contact
I want to plot the various times each record has been updated over the duration of time, so one axis on the report would be the date table - and then with the various dates for each of these columns against the relevant dates on it.
I can only have one active relationship, so I cannot seem to plot multiple dates from multiple columns onto a single report?
That can't be right... Not sure if I'm just having a day when the obvious answer is eluding me...
Solved! Go to Solution.
You can activate the relationships inside measures, e.g.
Num reviews =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last review date] )
)
Num contacts =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last contact date] )
)
You can activate the relationships inside measures, e.g.
Num reviews =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last review date] )
)
Num contacts =
CALCULATE (
COUNTROWS ( Contact ),
USERELATIONSHIP ( 'Date'[Date], Contact[Last contact date] )
)
Ah - perfect! Thank you so much
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
75 | |
71 | |
38 | |
29 | |
26 |
User | Count |
---|---|
97 | |
96 | |
60 | |
44 | |
41 |