Forum Discussion
Shelly_AnnAiken
5 years agoQrew Member
Yes, I would like for the user to click on an expired "Approval" and copy it to make a new approval but also log the Record ID# of the old approval.
Ideally we would want the user to land on the new record with the fields filled in, and showing the old record ID (copied record).
Your help is appreciated.
------------------------------
Shelly Ann Aiken
------------------------------
Ideally we would want the user to land on the new record with the fields filled in, and showing the old record ID (copied record).
Your help is appreciated.
------------------------------
Shelly Ann Aiken
------------------------------
MarkShnier__You
Qrew Legend
5 years agonot tested so if this does not work, you will need to npost back with your formula and the error message.
There is an app in the exchange called formula buttons for dummies which can help you lean how to write simple URL formula buttons.
URLRoot() & "db/" & dbid() & "?act=API_AddRecord" // two slashes means a comment
& "&apptoken=xxxxxxxxxxx" // if you have the need for application tokens enabled, then you need it here.
& "&_fid_6=" & urlencode([field name 1]) // you will need ton populate each field like this.
& "&_fid_7=" & urlencode([field name 2])
& "&_fid_8=" & urlencode([field name 3])
& "&_fid_9=" & urlencode([field name 4])
& "&_fid_10=" & urlencode([field name 5])
& "&_fid_99=" & [Record ID#] // remember to populate the field that will hold the record ID# of the original record.
& "&disprec=1" // this means to display the new record, .. ie to land the user on the new record.
Give it a try and post back if you get stuck.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
There is an app in the exchange called formula buttons for dummies which can help you lean how to write simple URL formula buttons.
URLRoot() & "db/" & dbid() & "?act=API_AddRecord" // two slashes means a comment
& "&apptoken=xxxxxxxxxxx" // if you have the need for application tokens enabled, then you need it here.
& "&_fid_6=" & urlencode([field name 1]) // you will need ton populate each field like this.
& "&_fid_7=" & urlencode([field name 2])
& "&_fid_8=" & urlencode([field name 3])
& "&_fid_9=" & urlencode([field name 4])
& "&_fid_10=" & urlencode([field name 5])
& "&_fid_99=" & [Record ID#] // remember to populate the field that will hold the record ID# of the original record.
& "&disprec=1" // this means to display the new record, .. ie to land the user on the new record.
Give it a try and post back if you get stuck.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------