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
abdalla
Helper I
Helper I

Latest value

Hello,

I want to make a column that holds the last shut in pressure-psia according to the latest active month date.

I looked at other posts but cant seem to figure out the right code.

abdalla_0-1658733306767.png

Please tell me what i can do for such

Thank you.

 

 

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

Hi @abdalla ,

Please try below dax formula to add a new column:

Column =
VAR cur_active_month = 'Table'[Active Month]
VAR cur_wellname = 'Table'[well name]
VAR cur_well = 'Table'[Well]
VAR cur_string = 'Table'[String]
VAR cur_reservoir = 'Table'[Reservoir]
VAR last_month =
    CALCULATE (
        MAX ( 'Table'[Active Month] ),
        FILTER (
            'Table',
            'Table'[Well] = cur_well
                && 'Table'[String] = cur_string
                && 'Table'[Reservoir] = cur_reservoir
                && 'Table'[well name] = cur_wellname
        )
    )
RETURN
    CALCULATE (
        MAX ( 'Table'[Shut in Pressure-psia] ),
        FILTER (
            'Table',
            'Table'[Active Month] = last_month
                && 'Table'[Well] = cur_well
                && 'Table'[String] = cur_string
                && 'Table'[Reservoir] = cur_reservoir
                && 'Table'[well name] = cur_wellname
        )
    )

vbinbinyumsft_0-1658908402520.png

Best regards,
Community Support Team_ Binbin Yu
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-binbinyu-msft
Community Support
Community Support

Hi @abdalla ,

Please try below dax formula to add a new column:

Column =
VAR cur_active_month = 'Table'[Active Month]
VAR cur_wellname = 'Table'[well name]
VAR cur_well = 'Table'[Well]
VAR cur_string = 'Table'[String]
VAR cur_reservoir = 'Table'[Reservoir]
VAR last_month =
    CALCULATE (
        MAX ( 'Table'[Active Month] ),
        FILTER (
            'Table',
            'Table'[Well] = cur_well
                && 'Table'[String] = cur_string
                && 'Table'[Reservoir] = cur_reservoir
                && 'Table'[well name] = cur_wellname
        )
    )
RETURN
    CALCULATE (
        MAX ( 'Table'[Shut in Pressure-psia] ),
        FILTER (
            'Table',
            'Table'[Active Month] = last_month
                && 'Table'[Well] = cur_well
                && 'Table'[String] = cur_string
                && 'Table'[Reservoir] = cur_reservoir
                && 'Table'[well name] = cur_wellname
        )
    )

vbinbinyumsft_0-1658908402520.png

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Works like a charm Thank you sir.

abdalla
Helper I
Helper I

hello amit,

Please find the attached pbix file and my expected outcome is the data plot column but my problem here is that this column includes data for all and all i want is just the latest shut in pressure for each well you can see that there are wells that are repeated and i only need the latest value of the shut in pressure of that well. https://app.powerbi.com/links/mtLTLIX4RX?ctid=8644cd89-6ec4-47c4-9147-055c60b5ada2&pbi_source=linkSh...

@abdalla , No Access to the file

how can i share the file 

when i copy it to here it says that pbix is not supported!

 

amitchandak
Super User
Super User

@abdalla , Refer if my blog can help

 

https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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.