Forum Discussion
Anonymous
4 years agoNot applicable
Sum values on same date (different tables)
Hi everyone, I would like to ask you something. Can someone help me out. I made those two graphics using different tables. I would like to sum the values of the same date. So for...
jppv20
4 years agoSolution Sage
Hi Anonymous ,
Do you have a date table to connect both tables?
rbriga
4 years agoImpactful Individual
jppv20 is right.
If you have a calendar table that each of these fact tables can connect to (best practice),
a measure such as Total = SUM('TableA'[Sales]) + SUM('TableB'[Sales])
will work perfectly, assuming your visual uses the year\ month\ dates from the calendar table.