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
Omar8787
Frequent Visitor

filter column

Dear all,

I need your support in writing a DAX formula.

Situation
I have a table containing a column "PurchaseOrderDocumentReference" there are several confirmations in each Purchase Order. So, I want to filter the latest confirmation of the column. How to do that?

Best Regard

 

multi confarmation in PO.jpg

1 ACCEPTED SOLUTION

Okay,

Now it depends if you need calculated column or measure, but I will cover both.
1. You need to create new column, where you extract the last digit. So you should have two columns. One with only pure PO and second with "version":

Migasuke_0-1674304209623.png

The best way how to do this is in Power Query, for example with extract options:

Migasuke_1-1674304311665.png


2. Once you have your two columns, you can create conditional DAX column, which defines last version. Formula looks like this:

 

 

obrazek.png
At this point, you can use this column for filtering you report. You just need to check "Latest".

3. In case you want to create a measure, you can now use this column for measures. Let's say each of my order has also value. If we want to sum value only for latest PO, we can do it:
Last Value for POs = CALCULATE(SUM('Table'[Value]),'Table'[Last Version] = "Latest")



If my answer was helpful please give me a Kudos or even accept as a Solution.

Let's connect on LinkedIn!

View solution in original post

5 REPLIES 5
Migasuke
Super User
Super User

@Omar8787,

can you give more info? For example, why do you have highlighted some numbers in your screenshot or do you have any date, we could use?

 



If my answer was helpful please give me a Kudos or even accept as a Solution.

Let's connect on LinkedIn!

my highlight is an example of how the PO number duplicates and the difference is only the last digit of each rows

 

So if I understand well:
You want to filter purchase orders with the highest number at the end? So for example: PO-00000-3 and PO-00010-3?

 



If my answer was helpful please give me a Kudos or even accept as a Solution.

Let's connect on LinkedIn!

Yes, Correct 

Okay,

Now it depends if you need calculated column or measure, but I will cover both.
1. You need to create new column, where you extract the last digit. So you should have two columns. One with only pure PO and second with "version":

Migasuke_0-1674304209623.png

The best way how to do this is in Power Query, for example with extract options:

Migasuke_1-1674304311665.png


2. Once you have your two columns, you can create conditional DAX column, which defines last version. Formula looks like this:

 

 

obrazek.png
At this point, you can use this column for filtering you report. You just need to check "Latest".

3. In case you want to create a measure, you can now use this column for measures. Let's say each of my order has also value. If we want to sum value only for latest PO, we can do it:
Last Value for POs = CALCULATE(SUM('Table'[Value]),'Table'[Last Version] = "Latest")



If my answer was helpful please give me a Kudos or even accept as a Solution.

Let's connect on LinkedIn!

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.

Top Solution Authors
Top Kudoed Authors