February 20, 200718 yr I have a data entry layout with a field that contains 10 checkboxes and I have another layout for printing. However, I don't want the print layout to actually print checked boxes, so I change the format to edit box. But... ... each checked box, when switched to edit box will print on a separate vertical line as in checkbox1 checkbox2 checkbox3, etc. This really limits my layout set up. I would rather the checkbox data print horizontally as in checkbox1, checkbox2, checkbox3, etc. Is this possible?
February 20, 200718 yr Hi try to show instead a calculation field with this calc: Let( string = Substitute (FilterValues ( ValueListItems ( Get (FileName) ; "YourCheckboxList" ) ; YourCheckboxfield ) ; ¶ ; ", " ); Left ( string ; Length ( string ) - 1) )
Create an account or sign in to comment