Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I cannot get this Count working, what do I do wrong?
= Count({< KundNr = {"=Sum( {$<$(vSetRolling12)>} $(vNettoFörs) )> $(vOmsG)"}>}Distinct KundNr)
kindly
Håkan
Try replacing double quotes with single quotes in the vSetRolling12 variable definition.
Anil -
Why would you ask the OP to remove a set analysis statement bro? This will drastically change the result of the expression. I advice against removing PeriodID
Hi Hakan, I think you'll need to create a variable that retrieves the different PeriodID to apply so you can avoid the double quotes in vSetRolling12, in example, create a variable vRolling12PeriodID like this:
=Chr(39) & Concat(Distinct {<PeriodID={"Same_conditions_as_in_vSetRolling12"}>} PeriodID, Chr(39) & ',' & Chr(39)) & Chr(39)
Then you can change the condition in vSetRolling12 to:
PeriodID={$(vRolling12PeriodID)}....
// Wich will contain only single quotes. Note that the PeriodID retrieved will be the same for all rows in the chart
Not tested, maybe there is a typo.
Sunny, I thought that is Simple Expression. I didn't notice those in depth. Anyhow thanks for your inputs