Forum Discussion
QuickBaseCoachD
6 years agoQrew Captain
Try using a semicolon as a delimiter
Here is what I have thus far:
URLRoot() & "db/" & [_DBID_TASKS] & "?a=API_GenAddRecordForm&_fid_12=" & URLEncode ([Record ID#])&
"&_fid_6=" & URLEncode("Fancy Design Proposal") &
"&_fid_28=" & "Opportunity" &
"&_fid_23=" & "Opportunity" &
"&_fid_31=" & URLEncode("user1@elitestudioe.com;user2@elitestudioe.com") &
"&_fid_8=" & URLEncode(Today()) &
"&z=" & Rurl()
Here is what I have thus far:
URLRoot() & "db/" & [_DBID_TASKS] & "?a=API_GenAddRecordForm&_fid_12=" & URLEncode ([Record ID#])&
"&_fid_6=" & URLEncode("Fancy Design Proposal") &
"&_fid_28=" & "Opportunity" &
"&_fid_23=" & "Opportunity" &
"&_fid_31=" & URLEncode("user1@elitestudioe.com;user2@elitestudioe.com") &
"&_fid_8=" & URLEncode(Today()) &
"&z=" & Rurl()
IvanWeiss
6 years agoQrew Captain
Ah so close and so simple, I should have thought of trying that. Thanks!