Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everybody!
I obtain what I want by IF but I would like to obtain it by SET ANALYSIS. (see attached Image please)
I tried these but it doesn't give any result:
sum({$<[%KEY_DEP]={"=[Data stato deposito]>=[Inizio_Mese]"}>} [_Flag apertura deposito])
or
sum({$< [Data stato deposito]={"=[Data stato deposito]>=[Inizio_Mese]"}>} [_Flag apertura deposito])
Thank you in advance!
Cri
Set analysis doesn't evaluate at row level. You should add a flag to your data model, example:
If([Data stato deposito] >= [Inizio_Mese], 1) as FlagName
Then your set analysis can do
sum({$< [FlagName]={1}>} [_Flag apertura deposito])
Set analysis doesn't evaluate at row level. You should add a flag to your data model, example:
If([Data stato deposito] >= [Inizio_Mese], 1) as FlagName
Then your set analysis can do
sum({$< [FlagName]={1}>} [_Flag apertura deposito])