The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.
Please tell me what i can do for such
Thank you.
Solved! Go to Solution.
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
)
)
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.
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
)
)
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.
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...
how can i share the file
when i copy it to here it says that pbix is not supported!
@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.
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
183 | |
80 | |
62 | |
46 | |
38 |