Could someone please help me out here, I'm trying to fill cells on a FlexGrid Table from 3 input boxs and a button control. I can find lots of info on how to fill from a DB but none on how to fill the way I am trying to do it. Here is what I have so far, Thanks for any help.
Private Sub FillCells()
' Fill in cells with values from Day, Bodypart and WeekNum Boxs
' Declare a 50 row and 3 column table
'
Dim Row As Variant
Dim Column As Variant
'
' Fill table with data
For Row = 0 To 49
For Column = 0 To 2
grdSchedule.Row = Day ' This is what I'm not sure about.
Next Column
Next Row
End Sub