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.
- BlancaAnderson7 years agoQrew Assistant CaptainIT WORKED! thank you!!!
I have a piggy back question. Is there a way to return them back to the dashboard once they push the button? Or another page? Not sure if I'm making sense. But just what it already does is fantastic! Thank you!!! - QuickBaseCoachD7 years agoQrew CaptainNo 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 - BlancaAnderson7 years agoQrew Assistant CaptainYou are my QB hero of the day! Thank you so much! My boss loves the buttonS and you have created a button monster :)