(imported topic written by SystemAdmin)
I am creating a report that will have sortable columns, including the computer name, the primary user, the last report time, and the IP.
Of course, the fact that some machines have multiple IP’s complicates things when it comes to sorting. My solution is to have a radio button (already implemented) that will allow the option to run the report with each IP as a separate result. This means that some computers will appear multiple times in the report, which is exactly what I am trying to accomplish.
A stripped version of what I have so far is below… can you show me how to return a unique result for each IP?
table of concatenation of ( trs of ( td of ( link of it ) & td of ( concatenation
"," of (ip addresses of it as string) ) ) ) of ( BES Computers whose ( (name of it as lowercase contains
"ComputerName" as lowercase) ) )
Thanks!