I have 2 list, where as list1 has 5 values and list2 has 2 values as below,
| List1 | List2 |
|---|---|
| A | - |
| B | - |
| C | 000123 |
| D | - |
| E | 000876 |
I need to fetch both list and check which list1 value and list2 value And I'm looking for output as below
A has -
B has -
C has 000123
D has -
E has 000876
Can someone help on this? Tried below screenshot of code enter image description here