Jul 5, 2010 #1 maas Programmer Sep 3, 2009 148 BH Hello All, I am having a field called description. The request is to show only the first two letters and ignore the others. It is kind oftrim o concat. So, how can I do that? Thanks
Hello All, I am having a field called description. The request is to show only the first two letters and ignore the others. It is kind oftrim o concat. So, how can I do that? Thanks
Jul 5, 2010 #2 Madawc Programmer Sep 5, 2002 7,628 GB Code: left({your.field}, 2) That's assuming no leading spaces or other complications. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP Upvote 0 Downvote
Code: left({your.field}, 2) That's assuming no leading spaces or other complications. Madawc Williams (East Anglia, UK). Using Crystal 11.5 with SQL and Windows XP
Jul 5, 2010 Thread starter #3 maas Programmer Sep 3, 2009 148 BH Thank you, I will try Upvote 0 Downvote