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

Create measure to identify most recent data (without date functions)

Goal: create a measure to identify the most recent data for a specific product ID in a specific month.

Issue: there is no date information, but rather a VersionID. The highest VersionID will indicate the most recent data.

Example: for the Car product with ProductID "1010," I want to be able to return the most recent data for the month of January (i.e. 675).

VersionID Data example.PNG

 

Thank you in advance!

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @derickson091 

Please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. A screen cap doesn't allow people to readily copy the data and run a quick test and thus decreases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).

Try this:

1. Place GRoup and ID in the rows of a table visual

2. Place this measure in the visual

Measure =
VAR LastVer_ =
    MAX ( Table1[VersionID] )
RETURN
    CALCULATE ( MAX ( Table1[Units] ), Table1[VersionID] = LastVer_ )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @derickson091 

Please always show your sample data in text-tabular format in addition to (or instead of) the screen captures. A screen cap doesn't allow people to readily copy the data and run a quick test and thus decreases the likelihood of your question being answered. Just use 'Copy table' in Power BI and paste it here. Or, ideally, share the pbix (beware of confidential data).

Try this:

1. Place GRoup and ID in the rows of a table visual

2. Place this measure in the visual

Measure =
VAR LastVer_ =
    MAX ( Table1[VersionID] )
RETURN
    CALCULATE ( MAX ( Table1[Units] ), Table1[VersionID] = LastVer_ )

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

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