I have excel which contains four sheets (say sheet1, sheet2, sheet3 and sheet4). I want to populate calculated values and other information from (sheet1, sheet2, sheet3) to sheet4. Both sheet1, sheet2 contains ID,Name, Age, Amount whereas sheet1 is static page and sheet2 is dynamic page. sheet3 will have ID, Name, Age, Contribution. once all these values are entered sheet4 should populate ID, Name, Age, Total(Amount * Contribution).
Sheet 1:
+--------------------------+
| ID | Name | Age | Amount |
+--------------------------+
| 1 | AAAA | 20 | 1500 |
+--------------------------+
| 2 | BBBB | 21 | 2000 |
+--------------------------+
| 3 | CCCC | 25 | 6000 |
+--------------------------+
Sheet 2:
+--------------------------+
| ID | Name | Age | Amount |
+--------------------------+
| 4 | XXXY | 20 | 3000 |
+--------------------------+
| 7 | YYYY | 21 | 7000 |
+--------------------------+
| 9 | ZZZZ | 25 | 5000 |
+--------------------------+
Sheet 3:
This sheet contribution value will be entered by user and they randomly enter for any user from both of the sheets (sheet1 or sheet2)
+------------------------------+
| ID | Name | Age | Contribute |
+------------------------------+
| 1 | AAAA | 20 | 1 |
+------------------------------+
| 3 | CCCC | 25 | 8 |
+------------------------------+
| 7 | YYYY | 21 | 9 |
+------------------------------+
| 9 | ZZZZ | 25 | 10 |
+------------------------------+
Sheet 4:
This should be auto populate the ID, Name and Age from Sheet3 exactly and Values should be Amount * Contribution (Amount my come from sheet1 or sheet2 based on the ID)
+------------------------------+
| ID | Name | Age | Value |
+------------------------------+
| 1 | AAAA | 20 | 1500 |
+------------------------------+
| 3 | CCCC | 25 | 48000 |
+------------------------------+
| 7 | YYYY | 21 | 63000 |
+------------------------------+
| 9 | ZZZZ | 25 | 50000 |
+------------------------------+
VLOOKUP: support.microsoft.com/en-us/office/… - Absinthecontributionis unique perID, or it needs to be summarized for more possible occurrences? I mean, are there more (the same) IDs with differentcontributionswhich to be summarized? - FaneDurucontributionis unique perID. Only oneIDwill come in "Sheet3" either it from "Sheet1" or "Sheet2" - Vignesh Kumar A