Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sculptorlv
Creator III
Creator III

Contains or Starts with ??

Hello!

Please help with the expression.

I have result columns with Names.

Then I use expression in Pivot Table. And I have to made IF expression. In this IF I should fins all rows, where Name starts with tow letters "Be".

Which function I have to use?

Thank you.

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

What about this:

If(WildMatch(FA_Number, 'E*'), 1, 0)

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

You can use Set analysis instead of if. Try this:

{<Name = {'Be*'}>}

sculptorlv
Creator III
Creator III
Author

You mean like this:

IF (FA_Number = 'E*',1,0)

doesn't work

sunny_talwar
MVP
MVP

What about this:

If(WildMatch(FA_Number, 'E*'), 1, 0)

sculptorlv
Creator III
Creator III
Author

This works!

Thank you!