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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

Creating the DAX formula to use the previous value in the other column

Hello everyone

I'm trying to create the backlog column as follows:

Backlog (OpenTicket + pre_week to backlog)- CloseTicket

I know that the delay 2 per week (24 Feb - 1 Sea )

DateOpenTicketCloseTicketDelay
02-08 Mar525
09-15 Mar436
16 -22 Mar6210

Could someone else give me a solution to this? It would help me a lot.

Thank you in advance,

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

Hello @negarabi ,

If OpenTicket and CloseTicket are measured and shown in the table visual, the @amitchandak solution is great and will work fine.

(when you create the measure, try using FILTER(ALLSELECTED('Date'),......) instead of FILTER('Date',......) )

But if the raw table looks like, as [Date] column is text, we can create a calculated column to get the first date this week

First Date =
VAR MonthTable =
    ADDCOLUMNS (
        GENERATESERIES ( 1, 12 ),
        "MonthName", FORMAT ( DATE ( 2000, [Value], 1 ), "MMM" )
    )
RETURN
    DATE ( 2020, MAXX ( FILTER ( MonthTable, [MonthName] = RIGHT ( [Date], 3 ) ), [Value] ), VALUE ( LEFT ( [Date], 2 ) ) )

you can beat 2020 as your year column

Next, we can create another calculation column, use the sum function if the Openticket is a column instead measure, to get the desired result:

Back Log =
VAR currentDate = [First Date]
RETURN
    2
        + CALCULATE (
            SUM ( 'Table'[OpenTicket] ) - SUM ( 'Table'[CloseTicket] ),
            'Table',
            'Table'[First Date] <= currentDate
        )

1.jpg


By the way, pbIX file as attachment.


Best regards

Community Support Team _ Dong Li
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

3 REPLIES 3
v-lid-msft
Community Support
Community Support

Hi @Anonymous ,

 

How about the result after you follow the suggestions mentioned in my original post?Could you please provide more details about it If it doesn't meet your requirement?


Best regards,

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-lid-msft
Community Support
Community Support

Hello @negarabi ,

If OpenTicket and CloseTicket are measured and shown in the table visual, the @amitchandak solution is great and will work fine.

(when you create the measure, try using FILTER(ALLSELECTED('Date'),......) instead of FILTER('Date',......) )

But if the raw table looks like, as [Date] column is text, we can create a calculated column to get the first date this week

First Date =
VAR MonthTable =
    ADDCOLUMNS (
        GENERATESERIES ( 1, 12 ),
        "MonthName", FORMAT ( DATE ( 2000, [Value], 1 ), "MMM" )
    )
RETURN
    DATE ( 2020, MAXX ( FILTER ( MonthTable, [MonthName] = RIGHT ( [Date], 3 ) ), [Value] ), VALUE ( LEFT ( [Date], 2 ) ) )

you can beat 2020 as your year column

Next, we can create another calculation column, use the sum function if the Openticket is a column instead measure, to get the desired result:

Back Log =
VAR currentDate = [First Date]
RETURN
    2
        + CALCULATE (
            SUM ( 'Table'[OpenTicket] ) - SUM ( 'Table'[CloseTicket] ),
            'Table',
            'Table'[First Date] <= currentDate
        )

1.jpg


By the way, pbIX file as attachment.


Best regards

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@Anonymous , you have to build it using open and close

 

Cumm Sales = CALCULATE([OPen]-[Close],filter(date,date[date] <=maxx(date,date[date])))
Cumm Sales = CALCULATE([OPen]-[Close],,filter(date,date[date] <=max(Sales[Sales Date])))

 

Or use week Rank, if you do not have Dates

Assume Week table is Date

Cumm Sales = CALCULATE([OPen]-[Close],filter(date,date[Week Rank] <=maxx(date,date[Week Rank])))

How to do

https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-YTD-LYTD-Week-Over-Week/m-p/1051626#M184

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.