How can I compare three lists in order to aling their values. For example, if I have the following lists:
List1 List2 List3
a a b
b b c
c d d
How can I get the following output:
List1 List2 List3
a a -
b b b
c - c
- d d
It's very important for me to keep the original order.
Thanks.
In reply to Comparing and Aligning arrays by abd
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |