Jump to content

This topic is 7574 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I'm trying to figure out how to do the opposite of filter without several combined calculations.

-need to remove some text from a global field

(i.e. 23x 35x 83x (-35x) = 23x 83x)

- the text I want to remove is a field on a current record.

- its for marking/unmarking records

tia

Posted

You could add a space at the front of the field, so each item looks the same, then use substitute:

Substitute( " " & Field; [" " & ToRemove; "" ] )

but that leaves an extra space at the front, if that bothers you, use:

Let( newText = Substitute( " " & Field; [" " & ToRemove; "" ] ); Right( newText; Length(newText)-1 ) )

to eliminate that leading space also.

This topic is 7574 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.