Create a sign in sheet based on another tab

Jriker1

New Member
Joined
Feb 13, 2013
Messages
26
I have a list of people in Sheet1 starting in A2 and continuing down until the last person on the list.



On Sheet2, starting in A3, I have that same list. However for each populated field in column A from A3 on, it automatically creates a box around the A cell and the same B cell. So the name of the person and then the field they should sign their name in when showing up to the meeting. I'm having a problem automating what's in A2 down in Sheet 1 into A3 down in sheet 2. I've tried several methods and they always leave like zero's in the cells, then people tell you how to format the cells so they don't show. But technically there is something in those cells so the black box shows in those cells. Any way to have the content in Sheet1 A2 down populate in Sheet2 A3 down and only items that have content in Sheet1 Column A?


Thanks.


JR
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
By the way, I came up with this, that seems to work, but would love it to be automated when switching tabs:

Sub CopyCol()
Dim lr As Long

Application.ScreenUpdating = False
With Sheets("Sheet1")
lr = .Cells.Find("*", , xlValues, , xlByRows, xlPrevious).Row
.Range(.Cells(2, "A"), .Cells(lr, "A")).Copy Sheets("Sheet2").Cells(3, "A")
End With
Application.ScreenUpdating = True
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,488
Messages
6,125,092
Members
449,206
Latest member
ralemanygarcia

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top