Hello!
I was wondering if there was a way in Crystal to do the following:
If a field has a character limit of 10 characters...and the data fed in has 11 characters, instead of showing truncated data, i'd like it to show ** . Excel has a function like this where if a column is too narrow for a field to show completely, it shows ###### instead of the data.
Is there a way to do this for numeric fields and string fields?
I have tried:
if length {DataTable1.Name} < 4 then {DataTable1.Name} else '****'
also,
if length {DataTable1.Name} > 4 then '*****'
Neither works. Any ideas?