Compare 2 columns on different sheets and move data when match
Closed
AnnetteeBrown
Posts
1
Registration date
Thursday 20 April 2017
Status
Member
Last seen
20 April 2017
-
20 Apr 2017 à 14:24
Blocked Profile - 21 Apr 2017 à 14:17
Blocked Profile - 21 Apr 2017 à 14:17
Related:
- Compare 2 columns on different sheets and move data when match
- Tentacle locker 2 - Download - Adult games
- Beyond compare - Download - File management
- My cute roommate 2 - Download - Adult games
- Compare data in two excel sheets - Guide
- Excel move data from one sheet to another - Guide
1 response
Try something like this:
=if(sheet1cell=sheet2cell,moveit(sheet2cell))
Here is how it works.
The IF statement is standard, if (logic test, logic test is true, logic test is false). In the above example, we have dropped the False value of the logic test, as it is not mandatory. If the logic test is true, then the subroutine of moveit is fired. You will notice that we pass a variable to moveit. The routine of moveit takes the sheet2cell value and posts it onto your sheet that you want it moved to.
Let us know if this will work.
=if(sheet1cell=sheet2cell,moveit(sheet2cell))
Here is how it works.
The IF statement is standard, if (logic test, logic test is true, logic test is false). In the above example, we have dropped the False value of the logic test, as it is not mandatory. If the logic test is true, then the subroutine of moveit is fired. You will notice that we pass a variable to moveit. The routine of moveit takes the sheet2cell value and posts it onto your sheet that you want it moved to.
Let us know if this will work.