Forum Discussion
DanielHolland
4 years agoFrequent Visitor
SLA Status on Power BI Report
Hi All, Im looking for Power Query formula to work out the "SLA Status" of My IT Tickets. Here is a Table im Working with and im looking to populate the "SLA Status" field Based on "Status"...
- 4 years ago
Below is the formula
= if [Status]="Closed" and [Closed Date]>[Expected Fix Date] then "MISS" else if [Status]="Closed" and [Closed Date]<=[Expected Fix Date] then "HIT" else if [Status]="Open" and [Expected Fix Date]>=[Todays Date] then "On-Track" else "Breach"
Vijay_A_Verma
4 years agoMost Valuable Professional
Below is the formula
= if [Status]="Closed" and [Closed Date]>[Expected Fix Date] then "MISS"
else if [Status]="Closed" and [Closed Date]<=[Expected Fix Date] then "HIT"
else if [Status]="Open" and [Expected Fix Date]>=[Todays Date] then "On-Track"
else "Breach"- DanielHolland4 years agoFrequent Visitor
Thank you! Worked a treat 😄