how to translate this code?
Select * from view.view where ageYear = “combobox.value”
I know the code in sql but i cant do it in lotus script,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
@DBlookup is your friend. I haven’t written Formula in a long, long time–all my major code for Domino is in Java now, but something like
You cannot look up multiple columns with one @dblookup the way you can select them in SQL. You will need multiple @dblookups.
Also, this assumes you have a view sorted by the indexed value, in your case ageYear.
If you really need multiple columns, perhaps you should be using LotusScript or Java, or reanalyzing what you are trying to do. Context would help.