Forum Discussion
- MarkShnierQrew CadetMake a formula URL button to redisplay the record on the Alternate Form and then print from there.
Here s an example.
URLRoot() & "db/" & Dbid() & "?a=dr&dfid=11&rid=" & [Record ID#]
Change the 11 to whatever the form id# is for your form. If you preview your form it will tell you the form ID in the URL. - NateMcKinneyQrew CadetHow do I add the parts I want and dont want?
- QuickBaseCoachDQrew CaptainSettings
Forms
and then duplicate the form so now you have two forms. Note that each form has a form ID#.
Carefully edit the form to remove the field you want removed. I say carefully, just to be sure you don't mess up your main form. Be sure which form you are editing.
You can also make a button to directly print on an alternate form.
URLRoot() & "db/" & Dbid() & "?a=printr&dfid=11&rid=" & [Record ID#]
Change the dfid=11 to the correct form ID#- StephanieHarrisQrew Assistant CaptainCan this form pop up in a new window or tab?
- QuickBaseCoachDQrew CaptainThe field properties of a formula URL field allow you to check a box that say open in New Window.
- NateMcKinneyQrew CadetThank you very much sir that worked great