I have Sheet1
, Sheet2
, Sheet3
, Sheet4
I want the formula i.e. if I enter any value in Sheet2, Sheet3, Sheet4 in Column E
, then it should match that value with Sheet1
Column A
, In case of value match, the data value of sheet1 should be copied to all other sheets.
EG:- In sheet1 I have the below mentioned data.
(A Column / B Column / C Column)
(Product Value / Cost / Packing)
(200 / 100 / 50)
(150 / 70 / 20)
(300 / 120 / 50)
(500 / 300 / 100)
To illustrate, if in Sheet2, Column E
if I put a value 150, then the formula should scan for that value in Sheet1, Column A
, and find its match in 2nd row, then it should copy the data of column B
(i.e 70) to Sheet2 column N
and similarly copy the Sheet1 column C
(i.e 20) to Sheet2 column O
.
If I enter value to Sheet2, Sheet3, Sheet4, Sheet5 then formula should scan the value only from Sheet1 and copy the data,to its respective places as described in the preceding paragraph.
vlookup
?index/match
? Not automatic but you didn't show any code. – findwindow