Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
What fields are you trying to populate?
and what's going on here
&_fid_2=" & [Record ID#]
You cannot populate data into fid 2 as that is a built in field which is not updatable.
the idea is to line up the fields you want to populate like
& "&_fid_12=" & urlencode("something into fid 12")
& "&_fid_13=1" // set fid 13 to be true (checked)
and what's going on here
&_fid_2=" & [Record ID#]
You cannot populate data into fid 2 as that is a built in field which is not updatable.
the idea is to line up the fields you want to populate like
& "&_fid_12=" & urlencode("something into fid 12")
& "&_fid_13=1" // set fid 13 to be true (checked)