Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
You can do a lot of stuff in QuickBase by just mimicing the URL you see when you do something natively.
so for example when you do a test subscription the URL will read like this
https://mycompany.quickbase.com/db/xxxxxxxx?a=sendsubscription&id=1
So, just make a URL formula button to do that.
so for example when you do a test subscription the URL will read like this
https://mycompany.quickbase.com/db/xxxxxxxx?a=sendsubscription&id=1
So, just make a URL formula button to do that.
QuickBaseCoachD
7 years agoQrew Captain
No problem
you can do this
var text URLONE = (put in your code here which sends the Subscription and end with a semi colon);
var text URLTWO = put in a url of where you want to go next;
$URLONE
& "&rdr=" & URLEncode($URLTWO)
note that if you have not used a formula variables before you can read about them here
https://help.quickbase.com/user-assistance/formula_variables.html
you can do this
var text URLONE = (put in your code here which sends the Subscription and end with a semi colon);
var text URLTWO = put in a url of where you want to go next;
$URLONE
& "&rdr=" & URLEncode($URLTWO)
note that if you have not used a formula variables before you can read about them here
https://help.quickbase.com/user-assistance/formula_variables.html