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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
JChouris
Helper I
Helper I

Multiple serial numbers One Order Number

I have a chart with order numbers tracking a specific part. There can be multiple serial numbers for each order number. I used this to get them in a sequence but i need each new number to be its own column in on the table. Is this possible?

JChouris_0-1684786391280.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @JChouris , 

 

Here are the steps you can follow: 

1. Create measure. 

Measure = 
RANKX( 
    FILTER(ALL(Sheet1), 
    'Sheet1'[OrderNumber]=MAX('Sheet1'[OrderNumber])), 
    CALCULATE(SUM('Sheet1'[SerialNumber])),,ASC) 
Measure 2 = 
IF( 
    HASONEFILTER(Sheet1[OrderNumber]), 
    CONCATENATEX( 
        FILTER(ALL(Sheet1),'Sheet1'[OrderNumber]=MAX('Sheet1'[OrderNumber])),[Measure],"/"), 
        BLANK()) 

2. Result: 

 

veqinmsft_0-1684916087295.png

 

If it doesn't meet your expectations, can you express your results in the form of pictures, we can better help you 

Best Regards, 

Liu Yang 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @JChouris , 

 

Here are the steps you can follow: 

1. Create measure. 

Measure = 
RANKX( 
    FILTER(ALL(Sheet1), 
    'Sheet1'[OrderNumber]=MAX('Sheet1'[OrderNumber])), 
    CALCULATE(SUM('Sheet1'[SerialNumber])),,ASC) 
Measure 2 = 
IF( 
    HASONEFILTER(Sheet1[OrderNumber]), 
    CONCATENATEX( 
        FILTER(ALL(Sheet1),'Sheet1'[OrderNumber]=MAX('Sheet1'[OrderNumber])),[Measure],"/"), 
        BLANK()) 

2. Result: 

 

veqinmsft_0-1684916087295.png

 

If it doesn't meet your expectations, can you express your results in the form of pictures, we can better help you 

Best Regards, 

Liu Yang 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly 

If we just wanna find the missing serial number that it show only missing serial Number one for order number. How can we get that?

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.