Forum Discussion
netpharma
7 years agoFrequent Visitor
Combo chart with target line
Hi community, I have my sales data set in 2 tables: Table 1: sale id, date, customer id, supplier id Table 2: sale id, item id, price, discount, currency From the above tables i calculate t...
- Anonymous7 years ago
netpharma,
Please create a measure in your sales table using DAX below and then drag the measure to Line values of your combo chart.Measure = CALCULATE(SUM('Table 3'[target]),FILTER('Table 3',MONTH('Table 3'[date])=MONTH(MAX('Table 1'[date]))))
Regards,
Lydia
Anonymous
7 years agoNot applicable
netpharma,
Please create a measure in your sales table using DAX below and then drag the measure to Line values of your combo chart.
Measure = CALCULATE(SUM('Table 3'[target]),FILTER('Table 3',MONTH('Table 3'[date])=MONTH(MAX('Table 1'[date]))))
Regards,
Lydia
Naseebah-RJH
5 years agoNew Member
Is it work for 3 target? So ,it will be 3 lines in same chart!