Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
Can anyone tell me how can I write this expression in set analysis?
Count( distinct {<[Date]-={'NULL'}>} if( len([Date])>0 ,[Date]&[Dimension_1]&[Dimension_2] ,null()))
I have tried this but this gives me a different count:
Count( distinct {<[Date]-={'NULL'},[Date]={"=len(trim([Date]))>0"}>} [Date]&[Dimension_1]&[Dimension_2])
Perhaps this?
Count( distinct {<[Date]-={'NULL', "=len(trim([Date]))<0"}>} [Date]&[Dimension_1]&[Dimension_2])
Perhaps this?
Count( distinct {<[Date]-={'NULL', "=len(trim([Date]))<0"}>} [Date]&[Dimension_1]&[Dimension_2])
Thanks so much! @Anil_Babu_Samineni