Intersect InfoTables Update Value
Hi,
Let's say I have these 2 tables.
I have 2 questions.
- How can I get the row where Value is empty in Table 1 ?
- How can I get result like the Table 3 Final Result ?
- What would be the faster / most efficient way to get the result that I want ?
My Case:
- I'm getting Table 1 from one database .
- I'm getting Table 2 from another database which has Ids list as Input. So "2,5".
- I join both tables to get Table 3 Final Result
I know I could do some loop to get the results that I want, but when you have quiet a lot of rows, the loop becomes slow.
I've tried the Intersect method but I couldn't get the result that I wanted (Maybe I'm doing it wrong).
Table 1:
| ID | Value |
|---|---|
| 1 | 10 |
| 2 | |
| 3 | 30 |
| 4 | 40 |
| 5 |
Table 2:
| ID | Value |
|---|---|
| 2 | 20 |
| 5 | 50 |
Table 3 Final Result:
| ID | Value |
|---|---|
| 1 | 10 |
| 2 | 20 |
| 3 | 30 |
| 4 | 40 |
| 5 | 50 |

