cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
Jowh
Regular Visitor

Time between two dates based on criteria

Hello! 

I have a table of ticket data where I for each critical ticket need to calculate the time since the last critical ticket was registered.
Been trying to solve this for a few hours now without success.

Basically: If Priority = Critical, calculate time between regdate and previous critical tickets' regdate (for each row). The goal is to calculate the average time between critical tickets being registered.

 

Any help would be greatly apreciated! 

5 REPLIES 5
FreemanZ
Super User
Super User

Hi Jowh, 

Not sure about your use case, is it something like below:

FreemanZ_1-1666938806645.png

here comes the code for the calculated column:
Duration =
VAR CurrentDate = 'Table'[Date]
VAR TABLE1 =
    CALCULATETABLE(
        'TABLE',
        FILTER ('Table', 'Table'[Priority]="Yes"),
        FILTER ('Table', 'Table'[Date]>CurrentDate)
    )
VAR MinDate =
    MINX (
         TABLE1,
        'Table'[Date]-CurrentDate)
RETURN
    IF (
        'Table'[Priority]="Yes",
        INT( MinDate)
    )

Hello and thank you! 

It is something similar but in the reverse order I suppose. Latest date should show the previous max date with Priority if that makes sense. Also presented in hours or minutes but I think I could figure that part out myself in worst case 🙂

Good Luck!

Not really getting this to work 😞 Tried to change to the following:

 

Time Since Last Critical = 
VAR CurrentDate = Issues[DATE_CREATED]
VAR TABLE1 =
    CALCULATETABLE(
        'Issues',
        FILTER ('Issues', 'Issues'[ISSUE_PRIORITY]="Critical"),
        FILTER ('Issues', 'Issues'[DATE_CREATED]<CurrentDate)
    )
VAR MinDate =
    MAXX( 
         Issues,
        Issues[DATE_CREATED]-CurrentDate)
RETURN
    IF (
        Issues[ISSUE_PRIORITY]="Critical",
        INT( MinDate),blank()
    )

I don't really understand the MinDate logic though (tried both MINX and MAXX) 

 

The first argument of MINX shall be the filtered table - Table1, instead of the native table - Issues.

MINX is to scan Table1 and get the immediate last date tagged "Critical."

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors