Forum Discussion
Anonymous
5 years agoNot applicable
Multiple Dates
Hi All, i have a Fact table that contains two date columns: a) Go Live (Start) b) Go Live (End) I basically want to create a matrix like below, however, i'm confused since one date relati...
- 5 years ago
Hi,
You can try to create a table "calendar" with calendarauto() and a mesure :
Calculate(SUMX(data, data[colonne]), USERELATIONSHIP(calendar[date], data[Go Live (Start)])) + Calculate(SUMX(data, data[colonne]), USERELATIONSHIP(calendar[date], data[Go Live (End)]))
Where data is the table that contains your data
nicolas_carrere
5 years agoNew Member
Hi,
You can try to create a table "calendar" with calendarauto() and a mesure :
Calculate(SUMX(data, data[colonne]), USERELATIONSHIP(calendar[date], data[Go Live (Start)])) + Calculate(SUMX(data, data[colonne]), USERELATIONSHIP(calendar[date], data[Go Live (End)]))
Where data is the table that contains your data
Anonymous
5 years agoNot applicable
Thanks so much!