Hello!
I am trying to make a search box in my powerapp where a user can choose what fields they want to search. It's fairly standard functionality, where a search box has an option set at the right side where you can choose what to search, i.e. "All", "Name", "Department", "Office", etc. It seems the "Search" formula in PowerApps does not allow for any kind of dynamic content whatsoever. I've tried giving it a string, array, if statement, and everything else I could think of. It only takes an actual string. Is there any way around this??
Solved! Go to Solution.
Hi @forcedLightning ,
Do you want to search based on different fields if you select different value in the drop down?
If so, firstly let me explain where's your problem.
Please notice the syntax of Search function:
Search( Table, SearchString, Column1 [, Column2, ... ] )
Column name should be constant value in this formula. If you use If statement to display dynamic column name, it will not be constant value.
You should use If statement outside search function.
For example:
If(drop down.selected.displayname=All,
Search(table,"Title","LastName","JobTitle",...),
drop down.selected.displayname=Department,
Search(table,"DepartmentValue"),
....)
If you still have problems, please show me completed formulas about the drop down and the gallery.
Best regards,
Your 3rd screenshot which contains the formula is no completely clear. Also copy and paste the formula instead.
Meanwhile Shane Young has a very on the search and dropdown mixed.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Hi @forcedLightning ,
Do you want to search based on different fields if you select different value in the drop down?
If so, firstly let me explain where's your problem.
Please notice the syntax of Search function:
Search( Table, SearchString, Column1 [, Column2, ... ] )
Column name should be constant value in this formula. If you use If statement to display dynamic column name, it will not be constant value.
You should use If statement outside search function.
For example:
If(drop down.selected.displayname=All,
Search(table,"Title","LastName","JobTitle",...),
drop down.selected.displayname=Department,
Search(table,"DepartmentValue"),
....)
If you still have problems, please show me completed formulas about the drop down and the gallery.
Best regards,
Thank you! This is what I needed.