Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoCan you post your current code?
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
JeffElliott
5 years agoQrew Member
var text url =
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord" &
"&rid=" & [Record ID#] &
"&apptoken=XXXXX" &
"&_fid_12=Completed" &
"&_fid_99=today()";
It's the last line....
------------------------------
Jeff Elliott
------------------------------
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord" &
"&rid=" & [Record ID#] &
"&apptoken=XXXXX" &
"&_fid_12=Completed" &
"&_fid_99=today()";
It's the last line....
------------------------------
Jeff Elliott
------------------------------
- BlakeHarrison5 years agoQrew CaptainTry this:
"&_fid_99=" & URLEncode(Today())"
------------------------------
Blake Harrison
bharrison@datablender.io
DataBlender - Quickbase Solution Provider
Atlanta GA
404.800.1702 / http://datablender.io/
------------------------------ - MarkShnier__You5 years ago
Qrew Legend
np
"&_fid_99=" & Today();
the first part is a text string, so it goes in quotes. Today() is a Function so it needs to be concatenated onto the string with the & , but functions don't go in quotes.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- JeffElliott5 years agoQrew MemberPerfect! thanks so much!
------------------------------
Jeff Elliott
------------------------------