Reputation: 12711
I'm receiving data to the crystal report IFieldObject in the format of "IFR - Issued For Review".I need to split it from "-" and display only "IFR".How can i achieve this using selection expert of IFieldObject?
Upvotes: 1
Views: 357
Reputation: 12711
got it work by adding Formula Field with the following formula
split({dtSquadCheckDetails.RevisionStatus},"-")[1]
Upvotes: 1