Five-line code
If &Color = "Blue" And &Pet = "Dog" Then &Flag = True; Else &Flag = False; End-If;
can be converted to one line
&Flag = (&Color = "Blue" And &Pet = "Dog");
&Flag is TRUE if both conditions are true.
False otherwise.
Five-line code
If &Color = "Blue" And &Pet = "Dog" Then &Flag = True; Else &Flag = False; End-If;
can be converted to one line
&Flag = (&Color = "Blue" And &Pet = "Dog");
&Flag is TRUE if both conditions are true.
False otherwise.
This nifty trick basically allows you to create hyperlinks on a PSQuery result.
Very useful for those drilldown reports where you click a link and it brings you further down the rabbit hole to more detailed information.
In this case, we will create 2 queries and try to link them using Drilldown URL.