Hello Everyone,
In my View, some numbers appear twice — one row contains lead time and price for version A, and the other row contains lead time and price for version B.
So for a specific number, you either see data for version A or version B, but I want to combine them into a single row for that number.
Here’s an example of how my data looks now:
| Number | Lead Time A | Lead Time B | Price A | Price B |
|---|---|---|---|---|
| 12345 | 28 | - | 10.88 | - |
| 12345 | - | 7 | - | 6.94 |
And this is what I want to get:
| Number | Lead Time A | Lead Time B | Price A | Price B |
|---|---|---|---|---|
| 12345 | 28 | 7 | 10.88 | 6.94 |
Is there a way to do this?
Thanks a lot!