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
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 35 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 67 | |
| 58 | |
| 29 | |
| 27 | |
| 25 |