Share via

Why am I receiving an error

Lorie Jones 0 Reputation points
2026-03-17T09:51:09.1633333+00:00

I am receiving error "There's too many actions being performed at the moment on your form. Please come back to your form later and try again" Then nothing will save on the form.

Microsoft 365 and Office | Microsoft Forms | Other
0 comments No comments

2 answers

Sort by: Most helpful
  1. Arlene D 36,060 Reputation points Independent Advisor
    2026-03-17T11:07:15.87+00:00

    Are you getting this error on one form only or all forms? This error in Microsoft Forms means the service is limiting actions for a short time due to repeated edits or a session issue, wait a few minutes, refresh the page, then sign out and sign back in to reset your session, and use an updated browser like Edge or Chrome.

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-03-17T09:51:26.2+00:00

    The error indicates that the platform is blocking saves because too many save-related actions or events are being triggered on the form in a short period, so the save operation is effectively being canceled.

    In similar Microsoft form-based environments, this typically happens when:

    1. A save event is triggered again before the previous save completes.
    2. Custom logic or scripts attached to the save event are calling save repeatedly or at the wrong time.

    In model-driven apps, for example, this is seen as a Saving in Progress error when the OnSave event is called again before the previous OnSave finishes, often due to code that calls save() inside an OnSave handler or via setTimeout() that overlaps saves. This causes recursive save loops and prevents the record from being saved.

    To troubleshoot in a similar scenario:

    1. Review any custom logic that runs when the form is saved (for example, event handlers or scripts) and remove or adjust any code that calls save again from within an OnSave-type event.
    2. Ensure there are no concurrent or repeated save calls (for example, timers or auto-save logic) that might overlap.
    3. Use the platform’s monitoring or diagnostics tools (such as Monitor and form checker in model-driven apps) to inspect the OnSave call stack and identify which script or function is causing repeated or unsupported save calls. Then work with the script owner to correct it.

    If the form or record is not saving at all, also check whether any save event handler is explicitly canceling the save (for example, by calling a preventDefault()-style method on the save event arguments).

    If there is no custom logic or scripting on the form, contact the form owner or administrator and provide them with the exact error text and what actions were taken before it appeared so they can inspect any underlying save logic or platform issues.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.