How to get Multiple Choice selections to appear on Print
I've looked at some example and still struggling to figure this out and basically I am using an "Invoice" like form and I have to instructions that need to be printed depending on if they are selected in a Multiple Choice Box. For example with Payment Instructions Field, Choice 1 = Pay Instructions, Choice 2 = Bank Routing, Choice 3 = Payment Terms. If all three are selected, all three sets of instructions would be printed and so. I was thinking maybe a Formula Field using If Statements or something as an idea.
6 replies
-
Hi Holly
Hint - add your fomula field to layout and set it as something like this :-
if xyz = 1 then "this is test line1" or if xyz = 2 then "this is test line 2" end
insert your field anme for xyz
-
Holly
If you have your messages in other fields then you can just point to them.
also you may find this useful
https://ninox.com/en/manual/calculations/reference-of-functions-and-language
Mel
-
case will work too
switch Status do
case 1:
"line1"
case 2:
"line2"
default:
"Line3"
endall of above are hints to show ONE selected option but you should be able to build on this using OR etc
-
soryy menat to say combindation of OR or AND in your statements
-
Thanks Mel and I did try the Formula approach with an IF statement and it worded well!
-
Hi, I have a similar problem with a Dynamic Multi Choice field.
How Can i get it appears on a print layout ? I can't fix it ..
thanks in advance
Content aside
- 3 yrs agoLast active
- 6Replies
- 608Views