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
Anonymous
Not applicable

Working with version type - multiple decimal points, show latest version

Hello,

 

I'm working with data which contains version column. It has numbers separated by decimals.

Here is example data:

SystemVersionDate
A16.9.011/3/2018
A16.11.011/5/2018
A16.10.011/5/2018
B7.8.211/4/2019
B6.5.311/1/2019
B7.0.211/2/2019

 

there might be different versions per system and we want to take the one that is the most recent one (highest digits).

I have created LATESTDATE measure and i want to show last versions for those last dates for each system.

What I want to get:

SystemVersionDate
A16.11.011/5/2018
B7.8.211/4/2019

 

But what I'm getting:

SystemVersionDate
A16.9.011/5/2018
B7.8.2

11/4/2019

 

 

I found this post where there is descirbed similar issue:

But it is good only for sorting, not for printing the exact values we have as version column.

 

Thanks for help 🙂

1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

Try the following measure for Last version:

 

Last version =
CALCULATE (
    MAX ( 'Table'[Version] );
    FILTER (
        ALL ( 'Table'[Date]; 'Table'[System] );
        'Table'[Date] = MAX ( 'Table'[Date] )
            && 'Table'[System] = MAX ( 'Table'[System] )
    )
)

Should work as expected, see file attach.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

3 REPLIES 3
MFelix
Super User
Super User

Hi @Anonymous ,

 

What do you mean by "But it is good only for sorting, not for printing the exact values we have as version column."

 

Believe that you have an issue with the measures / calculation you are using, can you share what are the setup you have on the table

 

But what I'm getting:

System Version Date
A 16.9.0 11/5/2018
B 7.8.2

11/4/2019

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Anonymous
Not applicable

@MFelix , sharing pbix file.

 

 

I thought about breaking it by decimals, sorting out and removing duplicates  - in second table. And then just join it.

Hi @Anonymous ,

 

Try the following measure for Last version:

 

Last version =
CALCULATE (
    MAX ( 'Table'[Version] );
    FILTER (
        ALL ( 'Table'[Date]; 'Table'[System] );
        'Table'[Date] = MAX ( 'Table'[Date] )
            && 'Table'[System] = MAX ( 'Table'[System] )
    )
)

Should work as expected, see file attach.

 

Regards,

MFelix


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



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.