Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Date table and multiple columns/tables

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 review
  • Contact table - Latest contact

  • Status table - Last update

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... 

 

 

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

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] )
)

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

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] )
)
Anonymous
Not applicable

Ah - perfect! Thank you so much

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.