

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to use Isnull() function in Set analysis
Hi Team,
How can we implement Isnull() function in Set analysis?
- « Previous Replies
- Next Replies »
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count({<A = {"=Len(A)=0"}>} B)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Like this??
sum({($ -<Code={'*'}>) >} Amount)


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sum({<field1-={"*"}>} field2)


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=sum({<DimensionField-={*}>} FactField)


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If A and B are associate each then, Try this? Or post sample to test
Count({<B = {"=Null()"}>} A)

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Try this: Count({$-<B={"*"}>}A)
-Teemu

- « Previous Replies
- Next Replies »