Okay so I tried to do this on my own. Which in someways was good learned somethings. On the flip side I have aged 30 years and have pulled half my hair out. I have tried to get the information to input on the form put I can not get it in how I would like it. It is all going in the same row and It should be like the example below starting at row 6 and using 3 rows 5 columns input the data, then the next one that gets input would skip a row and fill in 3 rows and 5 columns. This pattern will continue down the page. Hopefully someone can edit my current code to work in this fashion.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Assignments[/TD]
[TD][/TD]
[TD][/TD]
[TD]Received[/TD]
[TD]Possible[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]Assignment Name[/TD]
[TD][/TD]
[TD][/TD]
[TD]-[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]Due Date[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]Assignment Type[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]SKIP THIS ROW[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]Assignment Name[/TD]
[TD][/TD]
[TD][/TD]
[TD]-[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]Due Date[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12[/TD]
[TD]Assignment Type[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Hopefully this all makes sense as my mind is not functioning correctly. Thank you for looking.
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Assignments[/TD]
[TD][/TD]
[TD][/TD]
[TD]Received[/TD]
[TD]Possible[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]Assignment Name[/TD]
[TD][/TD]
[TD][/TD]
[TD]-[/TD]
[TD]20[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]Due Date[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]Assignment Type[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]SKIP THIS ROW[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]Assignment Name[/TD]
[TD][/TD]
[TD][/TD]
[TD]-[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]11[/TD]
[TD]Due Date[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12[/TD]
[TD]Assignment Type[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Code:
Private Sub cmdSubmit_Click()
Application.ScreenUpdating = False
Dim rNextCl As Range
Dim NextRw As Long
With Sheet1 'find next empty row using Column A
NextRw = .Cells(Rows.Count, 2) _
.End(xlUp).Offset(1, 0).Row
'This information starts at row 6 and goes down in groups of 3 rows and skips a row, so there is a
'blank row between the groups of 3 rows.
.Cells(NextRw, 1).Value = Me.txtAssignmentName.Value 'this would go in A6
.Cells(NextRw, 2).Value = Me.txtDate 'this would go in A7
.Cells(NextRw, 3).Value = Me.txtAssignmentType.Value 'this would go in A8
.Cells(NextRw, 4).Value = Me.txtPointsReceived.Value 'this would go in D6 would be nice if the default if left blank would input a "-" in the sheet
.Cells(NextRw, 5).Value = Me.txtPointsPossible.Value 'this would go in E6
'So this information would be Row 6:8 Then when I want to input another assignment it would
'skip a row and input the data. Not sure if it pushes the previous data down.
End With
'confirm data transferred
Unload Me
End Sub
Hopefully this all makes sense as my mind is not functioning correctly. Thank you for looking.