Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am trying to remove last 7 characters from a string but my expression does not work , can someone take look at it
Thanks
Usually something like this should work:
Left(FieldName, Len(FieldName) - 7))
Try this:
Left(SummaryTargets.key, Len(Trim(SummaryTargets.key)) - 7)