
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-09-2017 03:17 PM
So what I am wanting to do is either only include a few IP blocks in a report or exclude IP blocks from a report.
I have an automated report I want emailed out however, I do not want all the information from the current report to go to the team. Just different IP blocks that those teams own.
I have an automated report I want emailed out however, I do not want all the information from the current report to go to the team. Just different IP blocks that those teams own.
Labels:
- Labels:
-
Report Center
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2017 03:24 PM
You can use the BETWEEN operator in the where condition of your report. Do note you will have to use the tblAssets.IPNumeric table and write the IP addresses in full without dots as shown below. You can find more information about the BETWEEN operator here: https://www.w3schools.com/sql/sql_between.asp
The example will show all assets in the 192.168.1.1 - 192.168.1.50 IP range
The example will show all assets in the 192.168.1.1 - 192.168.1.50 IP range
Where tblAssets.IPNumeric
Between 192168001001 And 192168001050
