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
Hi Team,
I have score column, I have create a new column with the below condition
If score is lesss than or equal to 4 then Low
If Score is 5 & 6 then medium
If score is 7 & 8 High
Thanks in Adavce !
Solved! Go to Solution.
Hi @Anonymous ,
What's the data type of field Score? It is whole number or decimal number? And the highest value of score is 8? You can create a calculated column as below:
Column =
IF (
'Table'[Score] <= 4,
"Low",
IF ( [score] >= 5 && [Score] <= 6, "Medium", "High" )
)
Best Regards
Hi @Anonymous ,
What's the data type of field Score? It is whole number or decimal number? And the highest value of score is 8? You can create a calculated column as below:
Column =
IF (
'Table'[Score] <= 4,
"Low",
IF ( [score] >= 5 && [Score] <= 6, "Medium", "High" )
)
Best Regards
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 |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 40 | |
| 33 | |
| 24 | |
| 23 |