@GetViewInfo and Evaluate Action for every document change

I have a hide-when formula where I utilize @GetViewInfo on an action in an embedded view with the “Evaluate Action for every document change option” selected. The problem is that when the embedded view is first opened, the hide-when formula does not get fired until I click on a different document in the embedded view and back again. If there is only one document in the embedded view, I am completely stuck. Is there a way to force the hide-when formulas to evaluate when this view is opened?

Subject: @GetViewInfo and Evaluate Action for every document change

Trying doing an @If statement based on a field before the embedded view.

Somthing like:

@If(Field=“”;“”;@GetViewInfo…)

This should cause the Hide/When to run after the page is loaded.

Another method might be to add a @Command Refresh on the PostOpen event.

Cheers