DBLookup in Lotus Script

Hi,

Can someone help me with the syntax? I’m trying to convert this code in Lotus Scrip, this is all from a Local Copy :

days := @DbLookup(“” : “NoCache”;@DbName; “vwKeywords”; “DaysLimit”; 2);

thank you very much in advance.

Subject: DBLookup in Lotus Script

You can use Evaluate statement:

days = Evaluate(|@DbLookup(“” : “NoCache”;@DbName; “vwKeywords”; “DaysLimit”; 2)|)

Hope this helps.

-vadim