Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Problem when visualizing in line and clustered column chart

Hi everyone, I have a list of airplanes incidents   I'm trying to make a visual that contains the number of impacts monthly with a line or an area that shows the existence of mowing so I tri...
  • PVO3's avatar
    4 years ago

    Hi,

     

    A bit hard to understand.

    I think you need or 2 lines, OR a single line that displays the balace between the 2 OR only the 'Line 1' measure below.

    You can start by trying:

    Line 1 = CALCULATE(COUNTROWS( 'Table'),  'Table'[Mowing] = "Yes")

    Line 2 = CALCULATE(COUNTROWS( 'Table'),  'Table'[Mowing] = "No")

    OR

    Balance =

    CALCULATE(COUNTROWS( 'Table'),  'Table'[Mowing] = "Yes") - 

    CALCULATE(COUNTROWS( 'Table'),  'Table'[Mowing] = "No")