Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
jmg80525
Helper II
Helper II

Sort Array ASC Label Members as BEG, MID and END

Greetings.  I prefer to be able to do this utilizing M instead of DAX.  I have a table that will have two columns: one is the ID (Text) and the other, MD, contains integers.  I want to sort the table and then calculate a new column called POSITION to identify the first member of each unique ID array as BEG, the last as END, and all others as MID.  Example:

ID     MD    POSITION

A       1       BEG

A       2       MID

A       3       MID

A       4       END

B       3       BEG

B       7       MID         

B     12       MID

B     30       END

.....

Thanks.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

You can groupby the following:

Group.png

Expand the table out

Add a conditional column with


Condition Column.png

Remove columns and set data types. Final Table:

Final Table.png

View solution in original post

1 REPLY 1
Anonymous
Not applicable

You can groupby the following:

Group.png

Expand the table out

Add a conditional column with


Condition Column.png

Remove columns and set data types. Final Table:

Final Table.png

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors