Forum Discussion
DAX help: most recent event
I am trying to find the most recent event in my PBI.
Here are my column names and I need to find the last status update under "Last Event Description". I created a new column that combines the last event day and time.
| Customer Confirmation Number | Delivery Confirmation Number | Manifest Date | Receive Date | Last Event Date | Last Event Time | Last Event Description | Zip or Postal Code |
Please let me know how I should go about getting this most recent status.
I tried to use the following but its not pulling back the latest status:
Hi,
This M code works
let Source = Excel.CurrentWorkbook(){[Name="Data"]}[Content], #"Grouped Rows" = Table.Group(Source, {"Customer Confirmation Number", "Delivery Confirmation Number"}, {{"Count", each Table.Max(_,{"Last Event Date","Last Event Time"})}}), #"Expanded Count" = Table.ExpandRecordColumn(#"Grouped Rows", "Count", {"Manifest Date", "Receive Date", "Last Event Date", "Last Event Time", "Last Event Description"}, {"Manifest Date", "Receive Date", "Last Event Date", "Last Event Time", "Last Event Description"}), #"Changed Type" = Table.TransformColumnTypes(#"Expanded Count",{{"Last Event Date", type date}, {"Last Event Time", type time}}) in #"Changed Type"Hope this helps.
19 Replies
- lbendlin
Super User
Your VAR CustomerNumber returns a table. You may be missing the aggregation function.
A simple way would be to use TOPN(1) and CONCATENATEX.
- AnonymousNot applicable
Hi MJAGUSIAK ,
You can try formula like below:
Last Status = VAR CustomerNumber = MAX ( 'DHL Status'[Delivery Confirmation Number] ) RETURN CALCULATE ( MAXX ( FILTER ( ALL ( 'DHL Status' ), 'DHL Status'[Delivery Confirmation Number] = CustomerNumber ), 'DHL Status'[Last Event Date] + 'DHL Status'[Last Event Time] ), FILTER ( 'DHL Status', 'DHL Status'[Delivery Confirmation Number] = CustomerNumber ) )Best Regards,
Adamk KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- MJAGUSIAK
Helper I
This formula works for giving me the last date and time that is in the data.
I need to use the Delivery Confirmation Number and look for the most recent date and then take that most recent date and display whatever is in the column for Last Event Description.
Basically, I am wanting to override any previously seen status codes and only use the most recent status in the data for that particular customer tracking number.- lbendlin
Super User
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523