In this video, I’m going to go into how to use the Contains function! Whenever we’re working with data, be it strings or a data source, we always want to check if something is contained IN it. This is the video shows you how to write your own contains statements using the IN operator in Power Fx!
I use Power Apps as the demo, but it’s used the same anywhere Power Fx is used.
All demo code is below:
Text Search: If( Slider1.Value = 10, "ResultTrue" )
Data Search: Filter ( NameTable, "Joe" in Name )