Forum Discussion

I_miss_tableau's avatar
2 years ago
Solved

Exclude outliers based on numeric paramater

Hi, I am absolute beginner if it comes to Power BI (as my name says I used to use Tableau). I'm trying to create dashboard which exlude outlers based on user selection. User can choose value which he...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi  I_miss_tableau 

     

    Try the following DAX

    Measure = CALCULATE(SUMX(FILTER('Table','Table'[Sales]<='Table'[Paramater]),'Table'[Sales]))

     

    This is the result you want

     

     

     

    Best Regards,

    Jayleny

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.