Forum Discussion

fernandoC's avatar
fernandoC
Icon for Helper V rankHelper V
5 years ago
Solved

Funnel Sorting

Hi Team,   I've built a formula based on 2 different columns ("Status Name Complete) & ("Status Order Complete"). These formulas has been used before on other proyects and it works perfectly, howe...
  • Anonymous's avatar
    Anonymous
    5 years ago

    Hi fernandoC ,

     

    Please see the below screenshot, I think that's what you want.

     

    Funnel = CALCULATE (
    COUNTROWS('Main Jira Info'),
    FILTER (
    ALL ( 'Main Jira Info'[Status Order Complete], 'Main Jira Info'[Status Name Complete] ),
    'Main Jira Info'[Status Order Complete] <= MAX('Main Jira Info'[Status Order Complete]) && NOT(ISBLANK('Main Jira Info'[Status Name Complete]))
    )
    )

     

     

    Please try.

    Aiolos Zhao