example:
I have sheet named "Dept. 1", "Dept. 2" and "Dept. 3" each containing a list with 2 columns as follows.
dept. 1 Dept. 2 Dept. 3
1 account Value account Value account Value
2 120 100 100 1200 110 1000
3 130 120 120 100 120 1100
4 140 1100 150 110 140 120
Now i want to create a sheet "total" that looks like this.
1 Account dept. 1 dept. 2 dept. 3
2 100 N/A 1200 N/A
3 110 N/A N/A 1000
4 120 100 100 1100
5 130 120 N/A N/A
6 140 1100 N/A 120
7 150 N/A 110 N/A
I had the idea to make the following formula in B2 and copy it
=VLOOKUP($A2;"'"&$B1&"'!$A$2:$B$4;2;FALSE)
But it doesn't do the trick.
Any help would be apreciated.
I have sheet named "Dept. 1", "Dept. 2" and "Dept. 3" each containing a list with 2 columns as follows.
dept. 1 Dept. 2 Dept. 3
1 account Value account Value account Value
2 120 100 100 1200 110 1000
3 130 120 120 100 120 1100
4 140 1100 150 110 140 120
Now i want to create a sheet "total" that looks like this.
1 Account dept. 1 dept. 2 dept. 3
2 100 N/A 1200 N/A
3 110 N/A N/A 1000
4 120 100 100 1100
5 130 120 N/A N/A
6 140 1100 N/A 120
7 150 N/A 110 N/A
I had the idea to make the following formula in B2 and copy it
=VLOOKUP($A2;"'"&$B1&"'!$A$2:$B$4;2;FALSE)
But it doesn't do the trick.
Any help would be apreciated.