Hi Paul, so you currently have your button redirecting back to the record:
Redirect: &rdr=" & URLEncode(URLRoot() & "db/" &
TABLEid: Dbid() & "
View Record: ?a=dr&
Record ID: rid=" & [Record ID#]
If you want it to redirect you have to send it to the URL of the report. TO find the Report ID, look at the qid in the URL of the report page:
View Report: ?a=q&
Report ID: qid=REPORTID
So your url should look similar to this:
URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&apptoken=tokenmID&rid=" & [Record ID#] & "&_fid_80=1" &
"&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=q&qid=" & REPORTID)
I found these things through the community, but I am sure there is documentation on this somewhere.
------------------------------
Ursula Llaveria
------------------------------