Hey I just wanted to know if its possible to copy ROW Colors from sheet 2 into sheet 1 by a condition. The condition Would be the value coloumn A on each row is the same on as on sheet 1.
For example
Sheet 2 Table
Sheet 1 Table
Now the first row with Peter on A1 should get green for the whole row
Second row Shouldnt be touched
Third Row Red
And the last row yellow
As you can see, sheet 1 has more Rows than sheet 2.
The easiest way for me would smthg be like index match with coloumn A and just copy the color to whole row.
A way it could work in my opinion would be to make two arrays. Array 1 Has Sheet 2 and Array2 sheet 1. Now comparing both arrays. Side note Sheet 1 has all values that sheet 2 has.
traverse and compare coloumn A values on array1 index one with all array2 values .
For example
Sheet 2 Table
Johannes (This row has the color red) | A | |
Peter
| B | |
kristine
| DE | |
Ulrike
| ENG |
Sheet 1 Table
Peter | DE |
Klein Dipsy | A |
Johannes | ENG |
John Doe | Fr |
Max Musterhase | Tr |
Ulrike | Gr |
Now the first row with Peter on A1 should get green for the whole row
Second row Shouldnt be touched
Third Row Red
And the last row yellow
As you can see, sheet 1 has more Rows than sheet 2.
The easiest way for me would smthg be like index match with coloumn A and just copy the color to whole row.
A way it could work in my opinion would be to make two arrays. Array 1 Has Sheet 2 and Array2 sheet 1. Now comparing both arrays. Side note Sheet 1 has all values that sheet 2 has.
traverse and compare coloumn A values on array1 index one with all array2 values .