I have a spreadsheet with 2 columns. Column A being the product number and Column B being a checkin/checkout time. How do I move a product's checkout time to sheet2? Example below:
Currently Sheet1
Product..... Time
0001........ 20121119081512 (Checkin)
0002........ 20121119081530 (Checkin)
0003........ 20121119081602 (Checkin)
0004........ 20121119081645 (Checkin)
0005........ 20121119081708 (Checkin)
0001........ 20121119081600 (Checkout)
0002........ 20121119082001 (Checkout)
After Macro:
Sheet1 (Product Check In):
0001........ 20121119081512
0002........ 20121119081530
0003........ 20121119081602
0004........ 20121119081645
0005........ 20121119081708
Sheet2 (Product Check Out):
0001........ 20121119081600
0002........ 20121119082001
Bookmarks