Hello,
I would like to list items from a database into a list but like to make it look clean.
For example if database contains
Column1, Column2
John,Smith
Joe, Bloggs
I want to list them like this
John Smith
Joe Bloggs
Not like this (currently)
John Smith
Joe Bloggs
Any ideas to create the list, I can pull of the length but cannot change the string length to a desired length.
if Len(var) < 20 then
<how to make length = 20>
end if