Hi all,
If I want to match the data from "Total" column in "Table A" to the Company Name and have the data populate an empty column in "Final total" under "Table B", how should I do it? Table A and Table B are two separate input datas.
I would like the final output to be like Table C.
Table A
| Company Name | Total |
| Company A | 1111111 |
Company B | 222222 |
| Company C | 333333 |
| Company D | 444444 |
Table B
| Company Name | Final total |
| Company A | |
Company B | |
| Company C | |
| Company D | |
Table C
| Company Name | Final total |
| Company A | 1111111 |
Company B | 222222 |
| Company C | 333333 |
| Company D | 444444 |
Cheers,
J