Forum Discussion
gelseytanse
8 years agoFrequent Visitor
Overlay/Combine Line Charts
I am trying to achieve a visualization of multiple lines graph to show: - salesman's monthly average selling rate (ASR) - company's overall monthly average selling rate Objective is to compare the...
- 8 years ago
Hi gelseytanse,
I would suggest you add them all in one visual. Please check out the demo in the attachment.
AA = CALCULATE ( AVERAGE ( Table1[ASR] ), 'Table1'[SalesmanName] = "AA" )
BB = CALCULATE ( AVERAGE ( Table1[ASR] ), Table1[SalesmanName] = "BB" )
Company = AVERAGE(Table1[ASR])
Best Regards,
Dale
v-jiascu-msft
8 years agoMicrosoft Employee
gelseytanse
8 years agoFrequent Visitor
Hi Dale,
Thanks for the solution!
Gelsey