Report

We are working in navision with different company’s. And on one report I use the company information. But I have an value that is only for one person and it means if the language is ‘EN’ and the company is ‘…’ then the ‘…’ is ‘…’ If… AND If… THEN …; How must I do this???[:o)][xx(]

[joke] [:D] …, … us … …! … do … … with the … …? … a … on a … …/…? [:D] [/joke] Translation: Please, give us more details! What do you mean with the third …? Should a field on a report visible/invisible? bye Andre

I guess you want to include more than 1 condition in an IF … THEN? In that case you use ( and ) for each condition. E.g. IF (UserID = ‘Name’) AND (Language = ‘EN’) THEN… Kind regards,

Thank you very much, Hans