A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
You can create macro that displays the built-in data form for any sheet.
Let's say that your data are on a sheet named Sheet1.
The macro would look like this:
Sub DisplayForm()
Worksheets("Sheet1").ShowDataForm
End Sub
On another worksheet, you can create a Forms command button that executes this macro.
Or you can add a button to the Quick Access Toolbar that runs the macro. Make sure to specify that the QAT button will be stored with the workbook.