Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
taspland
Frequent Visitor

SLA Calculation

Hi, i'm trying to get a correct SLA state however i'm unable to get the data to show correctly. and have no idea how to split the incident and task sla on 

I have a table with

Ticket ID, Ticket Type (task or Incident) Business Duration (in seconds), Priority.   then trying to create a calculated column

Priority            incident sla Task SLA
4 - Normal       864000
3 - High             172800 259200
2 - Critical           100800 86400
1 - Very Critical 7200 7200

i also have another table with the SLA's (in seconds)

Capture.JPG

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, @taspland 

I’ve downloaded your pbix file and I can roughly understand your requirement according to your description, you can try this calculated column:

SLA STATE =

VAR _incidentsla=RELATED(SLA[incident sla])

VAR _tasksla=RELATED(SLA[Task SLA])

Return

IF(

    [ticket type]="Incident",

    IF(

        [business_duration]>=_incidentsla,

        "SLA Violated","SLA OK"),

        IF(

        [business_duration]>=_tasksla,

        "SLA Violated","SLA OK")

)

The output is like this:

v-robertq-msft_0-1621390117592.png

 

And you can get what you want.

You can download my test pbix file below

 

If you still have a problem, you can explain your expected result in detail with examples.

How to Get Your Question Answered Quickly 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
v-robertq-msft
Community Support
Community Support

Hi, @taspland 

I’ve downloaded your pbix file and I can roughly understand your requirement according to your description, you can try this calculated column:

SLA STATE =

VAR _incidentsla=RELATED(SLA[incident sla])

VAR _tasksla=RELATED(SLA[Task SLA])

Return

IF(

    [ticket type]="Incident",

    IF(

        [business_duration]>=_incidentsla,

        "SLA Violated","SLA OK"),

        IF(

        [business_duration]>=_tasksla,

        "SLA Violated","SLA OK")

)

The output is like this:

v-robertq-msft_0-1621390117592.png

 

And you can get what you want.

You can download my test pbix file below

 

If you still have a problem, you can explain your expected result in detail with examples.

How to Get Your Question Answered Quickly 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-robertq-msft thankyou for your help, that solved my issue. 

v-robertq-msft
Community Support
Community Support

Hi, @taspland 

I can’t download the sample file from your google link and it says that I need access:

v-robertq-msft_0-1621306099144.png

 

But according to your DAX formula, I can roughly understand your requirement, you can try to change the formula of the calculated column like this:

SLA STATE=

VAR _sla=Calculate(MAX(SLA[inc sla]),Filter(All(SLA),[P]=Earlier(task[priority])))

Return

IF(

      Task[business_duration]>=_sla,

      “SLA Violated”,

      “SLA OK”)

 

If this result is not what you want, you can give me the access to your google link and your explain your expected result with examples in detail.

How to Get Your Question Answered Quickly 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-robertq-msft thankyou for your assistance, i have provided you with access. i'm getting results that doesn't make sense, if you look below you can see it's showing SLA breached for time less than SLA Met, i think it maybe something with Incident vs tasks?  these below were incidents 

 

Capture.JPG

taspland
Frequent Visitor

@amitchandak thankyou, here is the PBIX link, (i couldn't find a way to upload directly)

https://drive.google.com/drive/folders/1GBZT7YqtHiUBPGouioHqn8yMA4m1XCxm?usp=sharing

Google drive link 

 

amitchandak
Super User
Super User

@taspland , Table structure is not clear. You need something like this

New column =
var _cnt = countx(filter(SLA, SLA[Priority] = ticket[Priority] && ticket[Business Duration in seconds] <= SLA[incident sla]),SLA[Priority])
return
if(isblank(_cnt), "SLA OK", "Not OK")

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

 

This can help

refer 4 ways to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.