Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
A low tech, effective, but sort of cheezy suggestion (not sure of cheezy is a technical term) is to send a report with one column.
The column would be a link to the Report. [Click here to see report]. So you still get to have the Subscription words and then the user will get say a report with 50 identical buttons to click and they click any button to run the report in native Quick Base which will, of course, require them to sign in.
The formula for the URL button would be
urlroot() & "db/" & dbid() & "?a=q&qid=xx"
Replace xx with the report # of the report.
A less cheezy method would be to make a Summary report with the same filters as the table report. There is some Magic that you can do with a summary report in that if you make a field which is a hyperlink, then when you click the hyperlink it will not do the usual drill downw, but rather it will run the hyperlink.
The formala for the html text field would be
var text Words = "Click here to see your confidential report";
var text URL = urlroot() & "db/" & dbid() & "?a=q&qid=xx";
"<a href=" & $URL & ">" & $Words & "</a>
The summary report would summarize that hyperlink field (which are all identical), so it will just have one line on the report which would make it not cheezy. So that is a non cheezy low tech solution.
The column would be a link to the Report. [Click here to see report]. So you still get to have the Subscription words and then the user will get say a report with 50 identical buttons to click and they click any button to run the report in native Quick Base which will, of course, require them to sign in.
The formula for the URL button would be
urlroot() & "db/" & dbid() & "?a=q&qid=xx"
Replace xx with the report # of the report.
A less cheezy method would be to make a Summary report with the same filters as the table report. There is some Magic that you can do with a summary report in that if you make a field which is a hyperlink, then when you click the hyperlink it will not do the usual drill downw, but rather it will run the hyperlink.
The formala for the html text field would be
var text Words = "Click here to see your confidential report";
var text URL = urlroot() & "db/" & dbid() & "?a=q&qid=xx";
"<a href=" & $URL & ">" & $Words & "</a>
The summary report would summarize that hyperlink field (which are all identical), so it will just have one line on the report which would make it not cheezy. So that is a non cheezy low tech solution.