Forum Discussion
RyanPflederer3
4 years agoQuickbase Staff
@Mike Tamoush it's probably failing because %%rid%%
is within URLEncode()
. This fails because the system is looking specifically for %%rid%%
but when it's encoded it actually becomes %25%25rid%25%25
.
The solve for this would be to wrap everything but %%rid%% in URLEncode(), like this:
//This is a redirect link, and therefore needs to be URLEncoded
URLEncode(URLRoot() & "db/" & dbid() & "?a=er&rid=") & "%%rid%%" & URLEncode("&_fid_7=" & [Status])