Forum Discussion

22LACMT's avatar
22LACMT
Helper III
3 years ago
Solved

Dax expression

im trying to filter the pd column to only include data that is >=11 and <=15   my expression isn't working.  Any ideas what im doing wrong?    CriticizedPD11_15 = (FILTER('percent','percent'[PDGr...
  • PabloDeheza's avatar
    PabloDeheza
    3 years ago

    For a column you can do something like:

    CriticizedPD11_15 =
    VAR _PDGrade =
        'percent'[PDGrade]
    RETURN
    IF(
        _PDGrade >= 199 && _PDGrade <= 205,
        'percent'[YourRanking],
        BLANK()
    )