
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-17-2012 10:46 PM
I have a department here that wants to use certain items from the device overview list that belong to their department and have them in a custom view. Is there a way to create a custom report to only show the devices that belong to that department?
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2012 09:10 PM
This is perfect. Thanks a lot!


Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-19-2012 07:33 PM
See this sql code that you can tweak:
Select tblCustDevices.DeviceKey, tblCustDevices.Ipaddress,
tblCustDevices.Displayname, tblCustDevices.Description,
tblCustDevices.Location
From tblCustDevices
Where tblCustDevices.Location = 'my location'
