Forum Discussion
Anonymous
6 years agoNot applicable
Help with combining dates
Hi All Completely new to the forum so thanks in advance for any help you can give me. I'm trying to combine some dates and some fields together into the same report. Structure of data below. 2...
- Anonymous6 years ago
Hi Anonymous,
You can create one calculated table as below:
Table = SUMMARIZECOLUMNS( 'TBL CONTACT'[ID], 'TBL CONTACT'[STATUS], "DATE LAUNCHED",MAX(MAX(MAX('CONTACTABLE 1'[2ND WEBSITE LAUNCHED]),MAX('CONTACTABLE 1'[3RD WEBSITE LAUNCHED])),MAX('CONTACTABLE 2'[4TH WEBSITE LAUNCHED])), "DATE ORDERED",MAX(MAX(MAX('TBL CONTACT'[2ND WEBSITE ORDERED]),MAX('CONTACTABLE 1'[3RD WEBSITE ORDERED])),MAX('CONTACTABLE 2'[4TH WEBSITE ORDERED])), "UOP",MAX(MAX(MAX('CONTACTABLE 4'[2ND WEBSITE UOP]),MAX('CONTACTABLE 4'[3RD WEBSITE UOP])),MAX('CONTACTABLE 4'[4TH WEBSITE UOP])))Best Regards
Rena
amitchandak
6 years agoSuper User
One way is that you join them with a common date table. Those are in one table, only one can have active join. You can change join using userelation.