Forum Discussion

gelseytanse's avatar
gelseytanse
Frequent Visitor
8 years ago
Solved

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...
  • v-jiascu-msft's avatar
    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])

    Overlay_Combine_Line_Charts

     

    Best Regards,

    Dale