3dservices
Technical User
I'm exporting the data from access but I need to manipulate it in the report.
Example: I'm exporting the data SHOE S8-1-A-2" but I need to extract the text "SHOE " for the report. I've tried using the following formula but haven't had any luck:
If InStr({Piping.LONG_DESCR}, "SHOE"
Then
Trim({Piping.LONG_DESCR});
Mid({Piping.LONG_DESCR},6)
I'm new to programming with Crystal Reports so any help would be appreciated.
Example: I'm exporting the data SHOE S8-1-A-2" but I need to extract the text "SHOE " for the report. I've tried using the following formula but haven't had any luck:
If InStr({Piping.LONG_DESCR}, "SHOE"
Trim({Piping.LONG_DESCR});
Mid({Piping.LONG_DESCR},6)
I'm new to programming with Crystal Reports so any help would be appreciated.