Forum Discussion
AlGrant
3 years agoFrequent Visitor
Help with IF statement and multiple conditions
Hello, I'm trying to flag items in our app tracker list as at risk based on timeline and status and could use some guidance. I am new to Powerbi. I have a list of items along with Status col...
- 3 years ago
After re-reading, I guess all that have a status of Complete are not a risk.
At Risk Decom date (y/n) 2 = IF( 'CMI Application Tracker'[Decom Status] <> "Complete" && OR( 'CMI Application Tracker'[On-Prem Decom Date] < TODAY(), 'CMI Application Tracker'[On-Prem Decom Date] = BLANK() ), "Yes", "No" )
AlGrant
3 years agoFrequent Visitor
Hi, thanks for the help, unfortunately that still flags items as at risk that are complete but have blank on-prem decom dates
grantsamborn
3 years agoSolution Sage
After re-reading, I guess all that have a status of Complete are not a risk.
At Risk Decom date (y/n) 2 =
IF(
'CMI Application Tracker'[Decom Status] <> "Complete"
&& OR(
'CMI Application Tracker'[On-Prem Decom Date] < TODAY(),
'CMI Application Tracker'[On-Prem Decom Date] = BLANK() ),
"Yes",
"No"
)- AlGrant3 years agoFrequent Visitor
Thank you!