Compare 2 columns on different sheets and move data when match
Closed
AnnetteeBrown
Posts
1
Registration date
Thursday April 20, 2017
Status
Member
Last seen
April 20, 2017
-
Updated on Apr 20, 2017 at 02:26 PM
Blocked Profile - Apr 21, 2017 at 02:17 PM
Blocked Profile - Apr 21, 2017 at 02:17 PM
Related:
- Compare 2 columns on different sheets and move data when match
- Tentacle locker 2 - Download - Adult games
- Fnia 2 - Download - Adult games
- Euro truck simulator 2 download free full version pc - Download - Simulation
- Feeding frenzy 2 download - Download - Arcade
- Red dead redemption 2 free download - Download - Action and adventure
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.