Sorry for the newbie question.
I've just started building a report to display my IIS logs. I want to filter out all internal IP's, how would I do this?
Thanx
I've figured out NOT but how do I use a range of IP's?
Could I use a wild card
<>"192.168.1.*"
Or should I give it a range'
<>"192.168.1.1-192.168.1.254"
Thanx
|||Try this
In Filter list
Use an expression instead of selecting the field/column itself like
if u have IPField
left(IPField,10) (this gives value - 192.168.1. (10 chars))
In Operator use != (Not equals)
In Value use an expression = "192.168.1."
Hope this helps u
No comments:
Post a Comment