Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a couple of buttons that has an action to set a variable, vQuarter, to either Q1, Q2, Q3, or Q4 that works perfect. However, I want a button that can set the quarter to a combination of Q1 and Q2. Is this possible?
Default in load script:
LET vQuarter='*'
In my expression I am using:
sum($*{<[Quarter]={"$(=vQuarter)"}>} [Responses])
I tried putting various methods with no success:
("Q1"|"Q2")
Q1,Q2
etc..
Thanks in advance!
-Jason
sum({<[Quarter]={$(vQuarter)}>} [Responses])
variable
vQuarter:
Q1,Q2
Thanks Robert! Worked beautifully!
-Jason