Sep 10, 2002 #1 jobillborf Programmer Joined Feb 13, 2001 Messages 61 Location US Hi I have a "&" (text) in the details section that I would like to suppress it the field Addrxtra.St2name is null. Thank you
Hi I have a "&" (text) in the details section that I would like to suppress it the field Addrxtra.St2name is null. Thank you
Sep 10, 2002 #2 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US Right click the field and select Format Field. Now click the X-2 next to the Suppress. place the following in there: isnull(Addrxtra.St2name) -k http://www.informeddatadecisions.comkai@informeddatadecisions.com Upvote 0 Downvote
Right click the field and select Format Field. Now click the X-2 next to the Suppress. place the following in there: isnull(Addrxtra.St2name) -k http://www.informeddatadecisions.comkai@informeddatadecisions.com
Sep 10, 2002 Thread starter #3 jobillborf Programmer Joined Feb 13, 2001 Messages 61 Location US Ken Im sorry but it did not work. The & is text not a field. Thank you Upvote 0 Downvote
Sep 10, 2002 #4 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US Text can also be suppressed, right click and select format field->Common (Tab)->Suppress->X-2. If you still have problems, just build a formula to contain the text and use: @My&text If isnull(Addrxtra.St2name) "" else "&" And I'm Kai, not Ken, Ken's the olde timer here. <flashin' a wicked lil grin at Ken> -k http://www.informeddatadecisions.comkai@informeddatadecisions.com Upvote 0 Downvote
Text can also be suppressed, right click and select format field->Common (Tab)->Suppress->X-2. If you still have problems, just build a formula to contain the text and use: @My&text If isnull(Addrxtra.St2name) "" else "&" And I'm Kai, not Ken, Ken's the olde timer here. <flashin' a wicked lil grin at Ken> -k http://www.informeddatadecisions.comkai@informeddatadecisions.com
Sep 10, 2002 #5 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US BTW, if this is separating two fields, consider just building a formula to house both fields and the & text: @My&text If isnull({Addrxtra.St2name}) {Addrxtra.St1name} else {Addrxtra.St1name} + "&" + {Addrxtra.St2name} -k http://www.informeddatadecisions.comkai@informeddatadecisions.com Upvote 0 Downvote
BTW, if this is separating two fields, consider just building a formula to house both fields and the & text: @My&text If isnull({Addrxtra.St2name}) {Addrxtra.St1name} else {Addrxtra.St1name} + "&" + {Addrxtra.St2name} -k http://www.informeddatadecisions.comkai@informeddatadecisions.com
Sep 10, 2002 Thread starter #6 jobillborf Programmer Joined Feb 13, 2001 Messages 61 Location US Thank you for your help. Upvote 0 Downvote