JenHamilton_Tye
7 years agoQrew Trainee
URL link to view a specific form, but the form changes when the edit button is clicked
I have a table with two forms. "Course form" (ID#10, default) and "Offering form" (ID#2).
I have a Formula - Url field to link users to the correct form from other tables and in reports:
I can replace a=dr with a=er, but I don't always want to always send them to "edit" the form.
This is also a problem when I send them to create a new record on a certain form - when they save the record it always shows the default form.
How can I fix this?
I have a Formula - Url field to link users to the correct form from other tables and in reports:
If(Contains([Request type], "Offering"),URLRoot() & "db/" & Dbid() &"?a=dr&rid=" & ToText([Record ID#]) & "&dfid=2"& "&z=" & Rurl(),It works, until they click the "edit" button at the top right of the record. In edit mode it will ALWAYS show the "Course form" - the default form.
URLRoot() & "db/" & Dbid() &"?a=dr&rid=" & ToText([Record ID#]) & "&dfid=10"& "&z=" & Rurl())
I can replace a=dr with a=er, but I don't always want to always send them to "edit" the form.
This is also a problem when I send them to create a new record on a certain form - when they save the record it always shows the default form.
How can I fix this?