This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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?
Solved! Go to Solution.
For a column you can do something like:
CriticizedPD11_15 =
VAR _PDGrade =
'percent'[PDGrade]
RETURN
IF(
_PDGrade >= 199 && _PDGrade <= 205,
'percent'[YourRanking],
BLANK()
)
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 :
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()
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |