Forum Discussion
- MarkShnier__You
Qrew Legend
Can you post your formula and let is know which fid is the reference field?
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- DanteTognoliQrew Captainfid 36 is the reference field
//[hoist completed] is a checkbox
If([Hoist Completed?] = true,
// next line generates a new record in the database in quotes
URLRoot() & "db/" &"bqkivu2gd"& "?a=API_GenAddRecordForm"
//fid 7 = [Hoist Date] on the new form, prefills this field with the date from the referenced field [Date] on the form where the button exists
&"&_fid_7=" & URLEncode([Date])
//fid 8 = [Flight Number]
&"&_fid_8=" & URLEncode([Flight No.])
//fid 10 = [Pilot]
&"&_fid_10=" & URLEncode([Pilot])
//fid 11 = [Nurse]
&"&_fid_11=" & URLEncode([Crew1])
//fid 12 = [Paramedic]
&"&_fid_12=" & URLEncode([Crew2])
//fid 36 = [Aircraft]
&"&_fid_36=" & URLEncode([Related Aircraft]))
------------------------------
Dante Tognoli
------------------------------- MarkShnier__You
Qrew Legend
Is fid 36 a numeric field type? Is it the field for [Related AirCraft].
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------