Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All;
i have 2 columns in my Oracle DB
name surname
Alex Alton
John Dumber
Lisa Sandra
i would like to see this 2 columns in 1 list box(2 columns return to 1 column)
Name&Surname
Alex Alton
John Dumber
Lisa Sandra
How can i do it?
Thanks in advance
=Name & ' ' Surname
=Name & ' ' Surname
=Name & ' ' & Surname
jjj
It works but my app slows down !
this list box is slower than others...
so it is useless ?
Is there any way?
Create a new column in script level which concatenates both the 'Name' and 'Surname'. You will get a new field and there wont be any performance issue.
e.g. Name &' '&Surname as [Full Name]
-Haneesh
Thank you...