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...
Anonymous
4 years agoNot applicable
Hi,
I just create a date table and joined both tables with this table. It worked! So now it is possible to but them both in the visual.
I am wondering if I can also use DAX to make a measure. So I will not see dark blue and light blue, but just one.
I know I can manipulate this as wel with 'Formatting', but I would like to do this on a correct way.
Thanks in advance!
rbriga
4 years agoImpactful Individual
You can always create a measure that does that!
Aggregate = SUM('TableA'[Sales]) + SUM('TableB'[Sales])
There you have it- a measure with one number to rule them all.