Forum Discussion
QuickBaseCoachD
11 years agoQrew Captain
If you are using a conventrion of URLTWO for what it does next after the edit, then it would just be like
URLRoot() & "db/" & dbid() & "?a=q&qid=xx"
ie in English this says , go to my app and go to the table I am already in (that's the dbid() part) and the Action is to run a Query "a=q" (QuickBase used to call reports "queries" and the Query ID number id xx (&qid=xx). So just run the report that you want to refresh and observe the Query ID number in the URL at the top of the browser.
e.g. URLRoot() & "db/" & dbid() & "?a=q&qid=22"
URLRoot() & "db/" & dbid() & "?a=q&qid=xx"
ie in English this says , go to my app and go to the table I am already in (that's the dbid() part) and the Action is to run a Query "a=q" (QuickBase used to call reports "queries" and the Query ID number id xx (&qid=xx). So just run the report that you want to refresh and observe the Query ID number in the URL at the top of the browser.
e.g. URLRoot() & "db/" & dbid() & "?a=q&qid=22"