Ok, so I would like to STOP needing to press the DataForm button on my quick access toolbar and would like to call that action via macro and command button (because it would be larger and easier to access than the smaller icon at the top of the page)...
Here's my issue
:
In my example table

I run this macro (which was created via "record macro")
Code:
Sub Macro1()
'
' Pulls up Data Form for Selected Table
'
Range("D6").Select
ActiveSheet.ShowDataForm
Range("I14").Select
End Sub
But I get this "Run Time Error 1004"


... can someone explain why this doesn't work, or what I need to manipulate in order to make it run? Suggestions? Work-arounds or bypasses?
Your help is greatly appreciated.