Forum Discussion
- QuickBaseCoachDQrew CaptainIf the workflow allows this, a user can be viewing a record and use the more button to copy this record. You can set in Field Properties if the field should auto populate on the Copy record.
If that works, but locating the More .. copy this record button is too non-obvious for users, you can make a formula URL button to mimic that. Post back if you need help with that. - ReyTacardonQrew TraineeI'm a newbie so please bear with me, let me look for that Field Property and I'll post back. Thank you!
- QuickBaseCoachDQrew Captainnp, look for
Auto-fill Copy the value when using "Copy this Task" to add a new Task- ReyTacardonQrew TraineeYup found this one in the bottom part of the Field Properties.
- ReyTacardonQrew TraineeCan you send some guidance on how to create formula URL Buttons?
- QuickBaseCoachDQrew CaptainThere is an app I put in the Exchange called URL Formulas for Dummies which attempts to provide a bit of a tutorial.
The formula for a Formula URL Button to "copy this record" would be this.
URLRoot() & "db/" & dbid() & "?a=GenCopyRecord&rid=" & [Record ID#]
You can choose a button appearance with a color or have it appear as a link (I would use a button as I think that links should be used more for navigation) and put it on the form and set the form properties to only show this field in View mode. - ReyTacardonQrew TraineeThank you sir! Also I found the "Copy this Entry" from the "More" Dropdown that you mentioned, that actually eliminates the need for another Button, so thanks for that too, but I will play with the Buttons too and try to at least do one in my app just to learn how to do it :)