Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
22LACMT
Helper III
Helper III

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'[PDGrade] >= 11), FILTER('percent','percent'[PDGrade] >= 15))

 

22LACMT_0-1667846373856.png

 

1 ACCEPTED SOLUTION

For a column you can do something like:

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

 

View solution in original post

5 REPLIES 5
PabloDeheza
Solution Sage
Solution Sage

Hi @22LACMT !
Your filter statement should be like this:

FILTER(
    'percent',
    'percent'[PDGrade] >= 11
        && 'percent'[PDGrade] >= 15
)

Let me know if that helps!

Thank you for the help. I tryied this : 

CriticizedPD11_15 = FILTER(
'percent',
'percent'[PDGrade] >= 11
&& 'percent'[PDGrade] >= 15
)             --- this is still throwing errors.  Do you know why? 

What is the requirement exactly? Are you trying to create a measure or a column? Are you trying to filter the table to load less data?
Let me know so I can help you more efficiently.

Thanks!

The goal is to create a column that only showes rankings that are 11- 15  for a specific asset type.  ex permanent exposure showes x% of the portfolio 11 - 15.  

For a column you can do something like:

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

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.