In my app I'm searching for users within my org based on text from a label in my app. If there is no text in label it defaults to a user and I want to be able to control which user it defaults to.
Office365Users.SearchUser({searchTerm:SMEHiddenKey.Text, top:1})
SMEHiddenKey is the label that is being searched.
Any thoughts on how to change the default?
Solved! Go to Solution.
Hi @UnitedLexAdmin ,
Use If(!IsBlank(SMEHiddenKey.Text),Office365Users.SearchUser({searchTerm:SMEHiddenKey.Text,top:1})) as Items Property for your gallery
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Add an if statement to check if the label is blank, if yes do not query search users
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks, @RezaDorrani .
I'm fairly new to this and I'm having a hard time creating the statement. This is what I got so far:
If(IsBlank(SMEHiddenKey), Office365Users.SearchUser({searchTerm:SMEHiddenKey.Text, top:1}))
This is throwing all sorts of errors, so I'm sure I'm messing something up.
Do not worry, PowerApps is fun and easy
Assuming you are using this formula on the Text property of a Label control, then the below should work
If(IsBlank(SMEHiddenKey.Text),"",First(Office365Users.SearchUser({searchTerm:SMEHiddenKey.Text,top:1})).DisplayName)
If you are using this formula on some other control property, please let me know
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@RezaDorrani Thanks for helping out. I'm using this in a gallery under the Items property. I tried your formula and there is an error.
Thanks!
Hi @UnitedLexAdmin ,
Use If(!IsBlank(SMEHiddenKey.Text),Office365Users.SearchUser({searchTerm:SMEHiddenKey.Text,top:1})) as Items Property for your gallery
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
thank you,
this little hint just gave me a good boost in my own little project!
User | Count |
---|---|
136 | |
135 | |
78 | |
72 | |
69 |
User | Count |
---|---|
222 | |
136 | |
78 | |
60 | |
54 |