Is there a way to hide a column in Lotus Notes if the entire column is empty? I’ve tried using
@ThisValue = ""
in the column properties, but that causes the column to disappear if atleast one value is null, rather than if all the values are null.
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.
Put the code to check emptiness of the column into view’s QueryOpen handler. Depending on the result of your check set a value (f.e. “0” or “1”) to an environment variable:
Call notesSession.SetEnvironmentVar("hidecolumn", "1")or
@SetEnvironment("hidecolumn"; "1")And in your column’s hide-when formula write
@Environment("hidecolumn") = "1"It works in LN6.x and later.