I am creating a function in which if a certain condition is met, I am displaying three variables. Would you know how to display the three variables on three different lines, or, succinctly put - how do I add a new line command within a function??
Thank you
aneversmiler (BOB member since 2008-01-25)
With the CHR() function. Not sure what the ascii value of a carriage return is, think it`s 13.
So you`d concatentate CHR(13) to create a carriage return in the string.
ABILtd (BOB member since 2006-02-08)
AndySkinner
That worked!! Thank you Sir for your response! You are doing an invaluable service!