- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Controling a report
Hi,
i'm having hard time with this one:
i would like to create a report that shows only the records with value of 3 or moreat the count column.
for example:
think of a summry report like this -
SrcIP Count
1.1.1.1 5
1.2.3.4 2
2.2.2.2 4
i want the report to show only addresses: 1.1.1.1 and 2.2.2.2
any idea about that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
You can do this in the SQL where clause...
something like:
........ AND (count >= 3)
Obviously count needs to be the field you've selected.
Hope this helps!
Adam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
acctualy you can't because envision won't let you touch any count field giving you an error...
this is the first thing i've tried but thanks anyway.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Interesting...
I jsut looked a a report we have working and part of the where clause is:
(RecBytes >= 3)
So the operators do work. Are you saying it just doesn't work with count? I haven't actually tested that, just assumed it would also work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hi,
there is no problem of doing the compressions with regular fields, the problem is that envision won't let you refer to any count field or any other function if to precise..
you can check it out by yourself
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
