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
Till
Resolver II
Resolver II

Create a Version Number

Hi All,
I would like to create the Version column using a Measure or Calculated column. The newest version should always be number 1. It can happen that several versions are loaded during the day. With Max I would always get the latest version but I need an automatic numbering.
Thanks for suggestions

Unbenannt.PNG

 

2 ACCEPTED SOLUTIONS
v-jayw-msft
Community Support
Community Support

Hi @Till ,

 

Accoring to your screenshot, are you want to add independent index for each location?

If so, you could try using RANKX() function.

https://docs.microsoft.com/en-us/dax/rankx-function-dax 

However, Sorting text data with RANKX() function may not be so accurate. So you will need to convert the text column to DATETIME type.

_datetime = DATE(MID('Table'[s_insert_ts],7,4),MID('Table'[s_insert_ts],4,2),MID('Table'[s_insert_ts],1,2))+TIMEVALUE(RIGHT('Table'[s_insert_ts],5))

Then create a rank column as below.

Column = RANKX(FILTER('Table','Table'[location]=EARLIER('Table'[location])),'Table'[_datetime],,DESC)

4.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

HI 

PREVIEW
thank you, you have helped me a lot.

It works

@AllisonKennedy 
Thank you also for your help

Have a nice week.

Till

View solution in original post

6 REPLIES 6
v-jayw-msft
Community Support
Community Support

Hi @Till ,

 

Accoring to your screenshot, are you want to add independent index for each location?

If so, you could try using RANKX() function.

https://docs.microsoft.com/en-us/dax/rankx-function-dax 

However, Sorting text data with RANKX() function may not be so accurate. So you will need to convert the text column to DATETIME type.

_datetime = DATE(MID('Table'[s_insert_ts],7,4),MID('Table'[s_insert_ts],4,2),MID('Table'[s_insert_ts],1,2))+TIMEVALUE(RIGHT('Table'[s_insert_ts],5))

Then create a rank column as below.

Column = RANKX(FILTER('Table','Table'[location]=EARLIER('Table'[location])),'Table'[_datetime],,DESC)

4.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

HI 

PREVIEW
thank you, you have helped me a lot.

It works

@AllisonKennedy 
Thank you also for your help

Have a nice week.

Till

AllisonKennedy
Super User
Super User

@Till  Can you use Power Query? If so, sort the s_insert_ts column first Descending, then click Add Column > Index > From 1


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Hi Allison,
thank you for your message.
Yes, that would work.
However, today I have the challenge that one more site is added. Then this does not work. Do you also have a solution for this?

 

Unbenannt.PNG

 

 



@Till 

Sorry, I don't understand your question - is the screenshot what actually happened or what you want to happen? Is the raw data coming from different files?


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Hi Allison,

It is one table where the Location column has been added. These locations can make uploads in the table, which means that they are attached to the back of the table.
KR and thank's for your help.
Till

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