Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

filter in expression

I need to filter in an expression

I tried something like this but no luck.

=If(Match(FormName like 'Tablet%',FormName)

If(match(FormName like 'Capsule%',FormName))

And like this.

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this way

If(Wildmatch(FormName,'*Tablet*','*Capsule*'),Formname)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

1 Reply
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try this way

If(Wildmatch(FormName,'*Tablet*','*Capsule*'),Formname)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!