Return to VBA Code Examples

Access VBA Refresh Form

Written by

Editorial Team

Reviewed by

Steve Rynearson

Last updated on July 9, 2022

In this tutorial, you will learn how to refresh a form in Access

Refreshing An Access Form

You can refresh your form using the Form.Refresh method.

Forms!ProductsF.Form.Refresh

The result is:

Refresh an Access Form With VBA

Alternatively you might write the code like this:

Forms("Form1").Refresh

Requery Access Form

Or instead of “Refreshing” the form, you might want to Requery the form.

Forms("Form1").Requery
vba-free-addin

VBA Code Examples Add-in

Easily access all of the code examples found on our site.

Simply navigate to the menu, click, and the code will be inserted directly into your module. .xlam add-in.

(No installation required!)

Free Download

Return to VBA Code Examples