Hello again!
I have four workbooks. Lets call them 2013,2014,2015,2016
Each workbook has about 7 sheets. Lets call them Tires,Parts,Doors,Windows,Computers,Consumables,*******Parts
Each sheet has about 25 columns. I am only interested in three of them. Columns A, D ,F
The values in A column are unique at each sheet, but in different order in each workbook (at the corresponding sheet of course).
On the tires sheet at each workbook values in A column starts with TIR001,TIR002 and so on.The same thing happens with other sheets. (parts sheet PAR001,Doors sheet DOO01 and so on)
So what i need to do is this.
Using the A column as my index i want to check if the data are the same across all years.
Sample data
Workbook 2013 | Sheet TIRES
Starting from 2013, i want excel to parse sheet Tires, go through all A column and check the workbooks 2014|2015|2016 in the sheets Tires for values in A columns.
If a value is found (ex TIR010) then check its corresponding value in columns D and F (in 2013 is WRB and 22).If the values match do nothing.
If they differ (ex 2014 is TIR010, WRC, 03) then paint the cells in 2014 red.And so on for the other years.
Is it doable?
My regards.
I dont mind if i have to compare only two workbooks at a time.
My regards.
I have four workbooks. Lets call them 2013,2014,2015,2016
Each workbook has about 7 sheets. Lets call them Tires,Parts,Doors,Windows,Computers,Consumables,*******Parts
Each sheet has about 25 columns. I am only interested in three of them. Columns A, D ,F
The values in A column are unique at each sheet, but in different order in each workbook (at the corresponding sheet of course).
On the tires sheet at each workbook values in A column starts with TIR001,TIR002 and so on.The same thing happens with other sheets. (parts sheet PAR001,Doors sheet DOO01 and so on)
So what i need to do is this.
Using the A column as my index i want to check if the data are the same across all years.
Sample data
Workbook 2013 | Sheet TIRES
Code:
A D F
TIR001 WRA 30
TIR010 WRB 22
TIR023 WRA 02
Starting from 2013, i want excel to parse sheet Tires, go through all A column and check the workbooks 2014|2015|2016 in the sheets Tires for values in A columns.
If a value is found (ex TIR010) then check its corresponding value in columns D and F (in 2013 is WRB and 22).If the values match do nothing.
If they differ (ex 2014 is TIR010, WRC, 03) then paint the cells in 2014 red.And so on for the other years.
Is it doable?
My regards.
I dont mind if i have to compare only two workbooks at a time.
My regards.