dianemarie
Instructor
Hello, we have data in a client table where we will add three asterisks at the end of the name to indicate the client does not want the fact that they do business with us advertised. Example: Client Name*** (It's old data going back many years from an old system.) When running reports, we have a parameter to exclude these clients. In order to flag these clients, we use this formula with StripString:
Length({up_UsageByList;1.Name})- Length(StripString({up_UsageByList;1.Name},"*"))> 0
The logic progresses that if the answer is True, then that client is excluded. But Crystal 11 doesn't accept StripString. Can someone point me towards a function that will work? I'm under the gun! Thank you so much for any help.
Length({up_UsageByList;1.Name})- Length(StripString({up_UsageByList;1.Name},"*"))> 0
The logic progresses that if the answer is True, then that client is excluded. But Crystal 11 doesn't accept StripString. Can someone point me towards a function that will work? I'm under the gun! Thank you so much for any help.