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 Friends,
I am new to PBI and working on some reports where I have below table data loaded into PBI that I am showing in a Table visual.
| ID | Type | SP |
| 1002 | User Story | 3 |
| 1003 | Task | |
| 1004 | Task | |
| 1005 | Task | |
| 1006 | User Story | 2 |
| 1007 | Task | |
| 1008 | Task | |
| 1009 | Bug | 1 |
| 1010 | User Story | |
| 1011 | Task | |
| 1012 | User Story | 1 |
| 1013 | User Story | |
| 1014 | User Story | 2 |
| 1015 | Task | |
| 1016 | Bug |
I want the SP column in the table visual to have specific background color as per the below conditions:
If the Type = User Story OR BUG and SP is NOT Blank (having any positive value) then the SP cell background color should be GREEN
If the Type = User Story OR BUG and SP IS Blank then the SP cell background color should be RED
if the Type <> User Story OR BUG then the SP cell background color should be a GRAY color.
Expected visual:
Please suggest.
Thanks,
Prabhat
Solved! Go to Solution.
@prabhatnath Creeate measure as per below:
Measure 2 = var _type = MIN('Table (2)'[Type])
var _sp = MIN('Table (2)'[SP])
return
IF((_type = "User Story" || _type = "Bug") && _sp >0 , 1,
IF((_type = "User Story" || _type = "Bug") && _sp = BLANK() , 2,
IF((_type <> "User Story" || _type <> "Bug") ,3,0)))
Please accept as solution if its worked.
@prabhatnath Creeate measure as per below:
Measure 2 = var _type = MIN('Table (2)'[Type])
var _sp = MIN('Table (2)'[SP])
return
IF((_type = "User Story" || _type = "Bug") && _sp >0 , 1,
IF((_type = "User Story" || _type = "Bug") && _sp = BLANK() , 2,
IF((_type <> "User Story" || _type <> "Bug") ,3,0)))
Please accept as solution if its worked.
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 |
|---|---|
| 69 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |