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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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