Hi, I am new to Access. I created a split datasheet form and
added the following code to form load event.
Private Sub Form_Load()
Dim sql As String
sql = "Select * from employees"
Me.RecordSource = sql
End Sub
When I open the form all I see is the bottom record bar 1 of 31 records.
I don’t see anything in the datasheet. How can I populate the data?
I like to do this in VBA …thank you for your comments!