Hello everyone,
I have a table with key fields and values. The values are only filled in if they're relevant.
In attachment I made an example, the data looks somewhat like this:
| fieldA | fieldB | fieldC | fieldD | value1 | value2 | value3 | value4 | value5 | value6 |
| 1 | a | x | | 0,15 | | 0,53 | | 0,09 | |
| 1 | a | y | | 0,25 | | 0,78 | | 0,11 | |
| 1 | b | x | | 0,17 | | 0,66 | | 0,49 | |
| 1 | b | y | | 0,63 | | 0,31 | | 0,36 | |
| 2 | a | x | | | 0,15 | | 0,34 | | 0,89 |
| 2 | a | y | | | 0,65 | | 0,81 | | 0,29 |
| 2 | b | x | | | 0,45 | | 0,92 | | 0,19 |
| 2 | b | y | | | 0,25 | | 0,79 | | 0,28 |
The flow that I've built filters on fieldA = 1 and deletes the null fields, then filters fieldA = 2 and deletes the null fields.
Both flows are then rejoined ignoring fieldA.
So this should be the result:
| fieldB | fieldC | fieldD | value1 | value2 | value3 | value4 | value5 | value6 |
| a | x | | 0,15 | 0,15 | 0,53 | 0,34 | 0,09 | 0,89 |
| a | y | | 0,25 | 0,65 | 0,78 | 0,81 | 0,11 | 0,29 |
| b | x | | 0,17 | 0,45 | 0,66 | 0,92 | 0,49 | 0,19 |
| b | y | | 0,63 | 0,25 | 0,31 | 0,79 | 0,36 | 0,28 |
The problem is that fieldD is also blank, so it gets removed and the macro that I've built tries to join on fieldD.
Basically I want to add a statement in my "remove null fields" that it should not get removed

Does anyone know how to set this up?
Thanks in advance,
Mikis