Make a little xlsm with either a form or input boxes, append query it to where ever you want? Email the sheet to who needs it?
Code:
Sub Emp_RawData_Gather()
Loops:
empfirstname = InputBox("Provide your First name" & vbCr & vbCr & "Step 1 of 9001")
EmpMiddleI = InputBox("Middle Initial" & vbCr & vbCr & "Step 2 of 9001")
EmpLastName = InputBox("Last Name" & vbCr & vbCr & "Step 3 of 9001")
SSN = InputBox("Social Security Number" & vbCr & vbCr & "Step 4 of 9001")
ReviewResponse = MsgBox("Lets review your information" & vbCrLf & _
"First Name : " & empfirstname & vbCr _
& "Middle Initial : " & EmpMiddleI & vbCr _
& "Last Name : " & EmpLastName & vbCr _
& "Social Security Number : " & SSN & vbCrLf & _
"If any information is not correct, click Cancel.", vbOKCancel, "Message from me")
If ReviewResponse <> vbOK Then
GoTo Loops:
End If
'Since the user confirmed the information is correct, fire the information to access here.
End Sub
Then just have an append query below the input boxes, you could even email them their responses to confirm they are in fact correct. Or, if you care nothing about the sensitive data, use google forms or a carrier pigeon.