Forum Discussion

KRISH80's avatar
KRISH80
Helper II
6 years ago
Solved

Need Help with DAX Formula

I need to Calculate Ratio of our WINS where the manufacturer is not equal CISCO and certain other filtering to be applied. The formula is not giving me any error but it is not showing me the result. ...
  • Anonymous's avatar
    Anonymous
    6 years ago
    GS Ratio =
    DIVIDE (
        CALCULATE (
            SUMX (
                'Closed Opprtunities',
                'Closed Opprtunities'[TS] + 'Closed Opprtunities'[SS] + 'Closed Opprtunities'[MS] + 'Closed Opprtunities'[TRNG] + 'Closed Opprtunities'[CS]
            ),
            FILTER (
                'Closed Opprtunities',
                'Closed Opprtunities'[OEM] <> "CISCO"
                    && 'Closed Opprtunities'[Attach] <= 0
                    && 'Closed Opprtunities'[SNT] <= 0
                    && 'Closed Opprtunities'[VBR] <= 0
            )
        ),
        [TOTAL-WINS],
        0
    )