Refresh doc to top of form

Hi.I am designing a form that has a bunch of fields at the top of the form that are hidden based on a variable. When this variable is changed, via a button near the bottom of the form, I then refresh the doc & all the fields show. However, I need to manually scroll to the top of the form to then input these fields. I was hoping that the form would “go to” the top of the form on refresh automatically. Prefer to avoid LotusScript, if possible.

Thx

Subject: Refresh doc to top of form

In the Postrecalc event of the form, write a formula similar to:

@if(variable=value;@Command([EditGotoField];“fieldname”);“”)

Subject: RE: Refresh doc to top of form

Excellent! Works like a charm. Thanks so much, Lawrence.

Subject: RE: Refresh doc to top of form

Sure – provided that you don’t refresh the form for any other reason.