November 4, 200916 yr Hi, I have a number field which I am using as a flag. In my report I want to print some text if the flag is 1 else don't print anything. Is it pissible to have the condition like this and print the field on report. Thanks Edited November 4, 200916 yr by Guest
February 8, 201015 yr Use an unstored calculation field which contains something similar: If ( flag = true ; Original field ; "" ) You then print using the unstored calculation field. The content will be the original field if flag is true. Otherwise, the content is empty and nothing prints out.
Create an account or sign in to comment