Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
How can we implement Isnull() function in Set analysis?
Count({<A = {"=Len(A)=0"}>} B)
Like this??
sum({($ -<Code={'*'}>) >} Amount)
what do you want to do ?
i think you can somethink like
count({$<qty={"*"}>}checknum)
-> this will Count everything that is not null
count({$<qty-={"*"}>}checknum)
-> this will Count everything that is null
Sum({<field1-={"*"}>} field2)
=sum({<DimensionField-={*}>} FactField)
Sorry guys. But Nothing is working out. I am explaining more with example:
I want count of A where B is null. So I am using below formula:
Count({<B-={"*"}>}A)
But it is not working.
If A and B are associate each then, Try this? Or post sample to test
Count({<B = {"=Null()"}>} A)
Hi,
I don't think that count({$<qty-={"*"}>}checknum) gives the correct results since nulls cannot be selected. Something like this will have to be used and seemed to work in a simple example application:
count( {$-<qty={"*"}>} checknum)
-Teemu
Hi,
Try this: Count({$-<B={"*"}>}A)
-Teemu