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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Camstr
Helper I
Helper I

How to use copy date column to other table?

Hello,

 

I have the following simplified model.  I have two fact tables that I want to filter, using slicers, by 'Site' and 'Date Time'.  'Date Time' column in red does not currently exist.

  • I want to avoid creating a 'Date Time' measure as I want to use it in a Slicer.
  • I want to avoid bidirectional filter direction to avoid later ambuiguity.
  • I want to avoid many-many cardinality between two fact tables.

 

How do I 'get' a 'Date Time' column into the 'Jobs' table that allows me to slice between both fact tables in the same report (sync'd slicers).

 

Thank you

 

simple model.JPG

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, @Camstr 

 

Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display. After creating a new table using Summarize, then rejoin the relationship.


vyaningymsft_0-1711353027458.png

 

Measure:

New Jobs Table =

SUMMARIZE(

    NATURALINNERJOIN('Jobs', 'Daily Summary(Daily)'),

    'Jobs'[Activity ID],

    'Jobs'[Site],

    'Daily Summary(Daily)'[Start Date Time]

)


Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

 

View solution in original post

2 REPLIES 2
Camstr
Helper I
Helper I

Thanks @Anonymous !

Anonymous
Not applicable

Hi, @Camstr 

 

Based on your description, I have created some measures to achieve the effect you are looking for. Following picture shows the effect of the display. After creating a new table using Summarize, then rejoin the relationship.


vyaningymsft_0-1711353027458.png

 

Measure:

New Jobs Table =

SUMMARIZE(

    NATURALINNERJOIN('Jobs', 'Daily Summary(Daily)'),

    'Jobs'[Activity ID],

    'Jobs'[Site],

    'Daily Summary(Daily)'[Start Date Time]

)


Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

 

Helpful resources

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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