Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I cant figure out query to get single amount (highlighted) as KPI figure.
I am looking for a correct query for
KPI chart formula :
SUM( IF( Aggr ( COUNT (distinct C_NonCat_Flag) ,W3_Desc) > 1 AND C_NonCat_Flag = 'NC',Amount,0 ))
Thank you.
Try this.
Sum({<W3_Desc = {'=Aggr(Count(Distinct C_NonCat_Flag),W3_Desc)>1'},C_NonCat_Flag = {"NC"}>}Amount)
Try this.
Sum({<W3_Desc = {'=Aggr(Count(Distinct C_NonCat_Flag),W3_Desc)>1'},C_NonCat_Flag = {"NC"}>}Amount)
Thanks Kaushik..