cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
nicsweeper
Engaged Sweeper
Hi there,

is it possible to create a report which only displays user specific software installations of e. g. Mozilla Firefox instead of all installations of Mozilla Firefox?
In the computer view page it's recognizable by the little person icon next to the entry so maybe there is a database field for that ...

Thank you and best regards
Nico
2 REPLIES 2
Esben_D
Lansweeper Employee
Lansweeper Employee
That data is stored in tblSoftware.CurrentUser. 1 means it is user specific software, 0 means it is not.

So basically just add the following condition to your report:
Where tblSoftware.CurrentUser = 1
Charles.X wrote:
That data is stored in tblSoftware.CurrentUser. 1 means it is user specific software, 0 means it is not.

So basically just add the following condition to your report:
Where tblSoftware.CurrentUser = 1


Thank you very much, worked like a charm!