Hi,
I'm trying to copy inputted data to a worksheet that the person selects from a drop-down list. I have a worksheet for each training session; people will select the session they want to book on and their details will be added to that worksheet.
The code I have so far is as follows:
Code
[FONT=Arial Unicode MS][size=10][COLOR=#1e2463]Sub CopyThem()[/COLOR][/SIZE][/FONT]
[size=10][COLOR=#1e2463][FONT=Arial Unicode MS] NextRow = Worksheets("F3").Range("A65536").end(xlup).Row +1[/FONT][/COLOR][/SIZE][size=10][COLOR=#1e2463][FONT=Arial Unicode MS] [/FONT][/COLOR][/SIZE]
[size=10][COLOR=#1e2463][FONT=Arial Unicode MS]Worksheets("Sheet2").Cells(NextRow, 1).Resize(1, 2).value = Array( _[/FONT][/COLOR][/SIZE][size=10][COLOR=#1e2463][FONT=Arial Unicode MS] Worksheets("Sheet1").Range("C10").value, _[/FONT][/COLOR][/SIZE][size=10][COLOR=#1e2463][FONT=Arial Unicode MS] Worksheets("Sheet1").Range("E12").value)[/FONT][/COLOR][/SIZE][FONT=Arial Unicode MS][size=10][COLOR=#1e2463]End Sub[/COLOR][/SIZE][/FONT]
Instead of sheet2, I need the formula to use the value that the person has selected in sheet1 cell C1.