logo
search
SharePoint Document Issues

How to Identify Which SharePoint List Form Submitted an Item

Maira MehtabMaira Mehtab Sep 22, 2026 868 views

Question details

The user needs to automatically identify which of their multiple SharePoint list forms submitted an item so the request type populates without requiring duplicate data entry from the user.

Product
Microsoft SharePoint
Device & OS
not provided
Scenario
Managing submissions from multiple input forms that feed into a single SharePoint list and needing to categorize them by source.
Observed behavior
SharePoint list items do not natively expose the title of the specific form used for submission as a standard field.
Before you start

Ensure you have Site Owner or List Design permissions in SharePoint to modify list columns, customize forms via Power Apps, or create Power Automate flows.

Solution 1Recommended

Customize SharePoint Forms with a Hidden Default Field

Use customized SharePoint list forms to pass a hidden default value representing the form name directly into a tracking column.

Since standard SharePoint forms do not capture the form name by default, you can create a custom column and use Power Apps to hide it from the user while forcing it to submit a specific value.

1
Create a Tracking Column

Navigate to your SharePoint list, click the 'Gear' icon, and select 'List settings'. Create a new column named 'Request Type' or 'Form Source' as a Single line of text.

2
Customize the Form

Go back to the list view, click 'Integrate' on the top command bar, select 'Power Apps', and then click 'Customize forms'.

3
Add the Column to the Form

In Power Apps, ensure your new 'Form Source' column is added to the SharePoint form edit screen.

4
Set the Default Value

Select the data card for the 'Form Source' column, unlock it in the advanced properties pane, and set its 'Default' property to the specific name of your form (e.g., "IT Hardware Request").

5
Hide the Field and Publish

Select the same data card and toggle its 'Visible' property to false. Save and publish your customized form to SharePoint.

Form Tracking Automation: Once published, every time a user submits this specific form, the hidden field will silently populate the list item with the form's name.
Free Microsoft Office alternative

Boost Your Productivity with WPS Office

While tracking SharePoint list form submissions requires Microsoft's ecosystem like Power Automate, managing your exported list data, reports, and daily documents is much easier with a lightweight office suite. WPS Office provides a seamless, free alternative to Microsoft Office for all your document needs.

Fully compatible with Microsoft Excel (.xlsx) formats for analyzing exported SharePoint lists seamlessly.Lightweight and fast, consuming minimal system resources compared to heavy enterprise office suites.Familiar, tabbed user interface making migration effortless for all users.Free built-in PDF editing tools alongside powerful Writer, Spreadsheet, and Presentation apps.
microsoft office alternative - wps office

Frequently Asked Questions

Does SharePoint record the form name in the item's version history?

No, SharePoint natively tracks who created or modified an item and the exact timestamp, but it does not track the specific UI form, interface, or view used to submit the item.

Can I use multiple default forms for a single SharePoint list?

By default, a SharePoint list utilizes one standard new item form. To use multiple distinct forms for a single list, you generally need to build custom forms in Power Apps and use conditional routing, or use external Microsoft Forms connected via Power Automate.

How do I ensure the hidden tracking field isn't modified by users?

If you customize the form using Power Apps, setting the specific field's 'Visible' property to 'false' ensures users cannot see or edit it during submission. However, the preset default value will still successfully pass to the SharePoint list upon saving.