Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
What is the Diff between Chr10() and Chr23()???
--> LF (line feed) vs CR (carriage return)
Carriage return - Wikipedia, the free encyclopedia
edit: I misread CHR(23) as CHR(13), CHR(23) is ETB:
End Transmission Block character - Wikipedia, the free encyclopedia
Hi Ajay,
please check this link chr( n ) function
13.
Sorry. Couldn't resist.
-Rob
Dear Ajay,
Chr(10) => Line Feed Return
Chr(23) => End of Transmit Block
Please find attached sample, I hope attached sample will help you.
Kind regards,
Ishfaque Ahmed
Hi,
Chr(10) is use to provide a new line to characters.
eg: ='Hello' & Chr(10) & ' World'
Thanks,
Pooja