Hi, it’s me again,
I have an unbound text box on a report which reads: =IIf([textbook]=No,””,”Textbook”)+” “+IIf([classnotes]=No,””,”Notes”)+” “+IIf([calculator]=No,””,”Calculator”)+” “+IIf(IsNull([Other]),””,[Other])+” “+IIf([notecard]=No,””,”3×5 card”)
Basically, if these checkboxes are checked, then put the name on the report. My problem is that they run together now with only a space between. I’d like to get them to line up with one line in between. I tried CHR(13) & CHR(10), but that gives me double spacing and blank lines if the answer is false. Is there a function to check if these items are true and return the name if they are? I don’t think Switch or Choose will work because that only returns the first true and there may be more than one true statement in this list.
Thanks!
Jodi