Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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?
Solved! Go to Solution.
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:
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
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:
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?
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 54 | |
| 40 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 94 | |
| 83 | |
| 33 | |
| 32 | |
| 24 |