
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Not null condition in set analysis
Hi All,
I have a measure in which the set analysis condition is not null. The measure is Count([Case ID]) where Case Create Date is not null.
So will the formula of this measure be Count({<[Case Create Date]-={*}>}[Case ID])?
Can anyone please let me know the proper syntax of writing this set analysis.
Thanks.


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try this
Count( {$<[Case Create Date]={"=Len(Trim([Case Create Date]))>0"}>}[Case ID])
or
Count( {$<[Case Create Date]={">0"}>}[Case ID])


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Nulls will not be included in the Count. No set expressions required.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
try
=Count(if(isnull([Case Create Date]),[Case ID]),[Case ID])


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this
Count({<[Case Create Date]-={"","NULL"}>}[Case ID]
Regards


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count(If(Len([Case Create Date])>0,[Case ID])
or
Count({$<[Case ID]={'=Len(Trim([Case Create Date]))>0'}>}[Case ID])

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count({<[Case Create Date]={"*"}>}[Case ID])

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