Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Outstanding Action Days =IF(AND(Status="C”),TODAY()-Response Date,"")
Outstanding Status=IF(AND(Outstanding Action Days="")," No Action Required",IF(AND(Outstanding Action Days<=21),"Outstanding Actions",IF(AND(Outstanding Action Days>21),"Overdue Actions","Check")))
Please i want calculated coumns based on above statment.
Solved! Go to Solution.
Hi @Anonymous
Create columns
Outstanding Action Days = IF([Status]="C",DATEDIFF([Reponse Date],TODAY(),DAY))
Outstanding Status =
IF (
[Outstanding Action Days] = BLANK (),
"No Action Required",
IF ( [Outstanding Action Days] <= 21, "Outstanding Actions", "Overdue Actions" )
)
there is no "check" value matched in the condition.
If you need "check" to show, please share more details(data example/screenshots) for further analysis.
Hi @Anonymous
Create columns
Outstanding Action Days = IF([Status]="C",DATEDIFF([Reponse Date],TODAY(),DAY))
Outstanding Status =
IF (
[Outstanding Action Days] = BLANK (),
"No Action Required",
IF ( [Outstanding Action Days] <= 21, "Outstanding Actions", "Overdue Actions" )
)
there is no "check" value matched in the condition.
If you need "check" to show, please share more details(data example/screenshots) for further analysis.
@Anonymous You can use DATEDIFF in your formula to calculate the difference between two dates. Also I would recommend using SWITCH in the Outstanding Status definition rathern than IF.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 52 | |
| 41 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 124 | |
| 108 | |
| 47 | |
| 28 | |
| 27 |