Forum Discussion

bratnapandey's avatar
bratnapandey
Qrew Member
2 days ago

Switch between forms

Hi Team, 

I am using an app where I have two forms. I want to switch from form a to b and b to a using button while staying on the same record. I tried creating field using formula URL but this is not working as expected. Any help would be appreciated. 

 

Thanks, 

BR 

  • This URL formula will redisplay the form in view mode on form # 10.  The form numbers are listed in settings and then forms.

    URLRoot() & "db/" & dbid() & "?a=dr&dfid=10&rid=" & [Record ID#]

     

    This will display in edit mode

    URLRoot() & "db/" & dbid() & "?a=er&dfid=10&rid=" & [Record ID#]

     

  • This URL formula will redisplay the form in view mode on form # 10.  The form numbers are listed in settings and then forms.

    URLRoot() & "db/" & dbid() & "?a=dr&dfid=10&rid=" & [Record ID#]

     

    This will display in edit mode

    URLRoot() & "db/" & dbid() & "?a=er&dfid=10&rid=" & [Record ID#]