Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a field value as ABC DEF.
I wish to convert it as ABC
DEF.
How can I replace the space between the words ABC and DEF with a newline character.
Thanks,
Asma
replace ' ' with chr(10)
replace ' ' with chr(10)
=Replace ('ABC DEF',' ',Chr(13))
Where do you want to do it? In the load script or in the application in a chart at run-time?
Do you need it to show as separate rows in a table or is it in a Text Box?