Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
winggear
Engaged Sweeper
We have a Excel file with hundred records in follwoing format (4 fields)

hostname , FA_No, invoice_date, Remark

Hosts are already existing in our database, how can we import excel file into Lansweeper custom fields base on the Hostname?

FA_no >>> custom01
Invoice_date >> custom02
Remark >>> Custom03

Thanks.

1 REPLY 1
Hemoco
Lansweeper Alumni
There is currently no built-in functionality for this. You will have to write a custom script and execute it in the Lansweeper configuration console under Lansweeper\Database Scripts to import this information.

An example script can be seen below.

UPDATE tblCompCustom
SET Custom1 = 'YourNo',
Custom2 = 'YourDate',
Custom3 = 'YourRemark'
FROM tblCompCustom INNER JOIN
tblComputers ON tblCompCustom.Computername = tblComputers.Computername
WHERE (tblComputers.Computer LIKE 'YourComputer')

Archive

This board contains archived posts from the retired Lansweeper Forum and Insiders Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now