In VB there is a function to do a replace. For example,
NoHyphens = Replace("1-800-555-1212", "-", vbNullString)
which gives you:
18005551212
Does anyone know how to do the same in Crystal Reports?
What I really need to do is replace a double apostrophe, which resides in a table field, with a single apostrophe.
The data will be displayed on the report with one apostrophe. As it stands now, the data is displaying with
double appostrophe.
Thanks
NoHyphens = Replace("1-800-555-1212", "-", vbNullString)
which gives you:
18005551212
Does anyone know how to do the same in Crystal Reports?
What I really need to do is replace a double apostrophe, which resides in a table field, with a single apostrophe.
The data will be displayed on the report with one apostrophe. As it stands now, the data is displaying with
double appostrophe.
Thanks