How do I use checkboxes correctly?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to have a list of items with checkboxes.
If you check the box then it moves the item to the next sheet.
I can sort of get this to work, however, when it moves it to the next sheet
it is still on the same row as it was in the first sheet.
How can I get the sheet to condense the items so that there are no blank
rows??
 
You will need to keep a track of where the last row on the second sheet is.
Something like

Dim lLastRow as Long

lLastRow=Worksheets("Sheet2").Range("A65536").End(xlUp).Row


Then use the lLastrow variable in the range to place your data

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top