This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello!
Hoping the big brains on here can help me 🙂
Here is an example of my data:
| ProductID | Facility | Sku | SkuFacility | MadeInFacility | TransferFrom | SkuTransferFrom |
| 6 | A | 1234 | 1234A | Y | ||
| 7 | B | 1234 | 1234B | N | A | 1234A |
| 8 | C | 1234 | 1234C | N | A | 1234A |
| 9 | D | 1234 | 1234D | Y |
I want to get a final column that looks like this:
| ProductID | Facility | Sku | SkuFacility | MadeInFacility | TransferFrom | SkuTransferFrom | TransferTo |
| 6 | A | 1234 | 1234A | Y | BC | ||
| 7 | B | 1234 | 1234B | N | A | 1234A | |
| 8 | C | 1234 | 1234C | N | A | 1234A | |
| 9 | D | 1234 | 1234D | Y |
I tried using this expression:
Solved! Go to Solution.
Are you sure? did you create a new column or new measure? this returns BC when used as a measure for me.
Anyway, for a column try this:
TransferTo1 =
calculate(
CONCATENATEX(
VALUES('Table'[Facility]);
'Table'[Facility];
""
);
filter(
all('Table');
'Table'[TransferFrom]=EARLIEST('Table'[Facility])
)
)
@Anonymous Are you saying that there are instances where there should be more than one id in the TransferTo field?
@jtownsend21 Yes, as in the example above the item transfers to two facilities (B and C) from A.
@Anonymous
Can you use a measure or must it be a column?
Here is a measure:
TransferTo =
calculate(
CONCATENATEX(
VALUES('Table'[Facility]);
'Table'[Facility];
""
);
filter(
all('Table');
'Table'[TransferFrom]=SELECTEDVALUE('Table'[Facility])
)
)you can probably make something similar as a column if needed 🙂
@Anonymous Thank you for your help! Unfortunately I am getting the result of ABCD instead of just BC for this particular SKU. Any ideas? Thanks again!
Are you sure? did you create a new column or new measure? this returns BC when used as a measure for me.
Anyway, for a column try this:
TransferTo1 =
calculate(
CONCATENATEX(
VALUES('Table'[Facility]);
'Table'[Facility];
""
);
filter(
all('Table');
'Table'[TransferFrom]=EARLIEST('Table'[Facility])
)
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 21 | |
| 18 |