Hello,
1- How do i create a search bar to be able to search multiple topics in the same page. I am currently making a ticket system and wanted to know how do I make a search bar to check a ticket a specific person created.
2- This doesn't have anything to do with the title however. I want to be able to respond and have the user get an email reply back stating their ticket was responded to. I might have to edit and make sure the value13.text is an email. Is there a way to send an email to replies? Or would I need to update the save button and email the value. If so how do I create it to send an email if and only if an internal note was placed/saved?
Still a complete novice on this, so would like to receive any help possible or options as well.
Solved! Go to Solution.
Hi @GC87
For your first question, do you want to create a search bar within your app? More details about create a search bar within PowerApps app, please check and see if the following video would help in your scenario:
https://www.youtube.com/watch?v=FaTnOOc34os
In addition, I think the "List Screen" (Screen template) could also achieve your needs. The "List Screen" (screen template) as below:
When you add a "List screen" within your app, it would generate a screen which contains a Search bar box and a gallery automatically as below:
For your second question, do you want to send an reply email within your app? If you want to send an email within your app, I think the Office365.SendEmail() function could achieve your needs. Before using Office365.SendEmail() function, you need to add a Office 365 Outlook connection within your app.
More details about the Office365.SendEmail() function, please check the following article:
Please also check and see if the following video would help in your scenario:
https://www.youtube.com/watch?v=bF7WkqtxKB0
So on your side, you should add the Office365.SendEmail() function within the OnSelect property of the "Submit" button as below:
SubmitForm(EditForm1); /* <-- Submit your internal Note*/ Office365.SendEmail( "user@email.com", "Subject of the email", "Body of the email" )
Best regards,
Kris
Hi @GC87
For your first question, do you want to create a search bar within your app? More details about create a search bar within PowerApps app, please check and see if the following video would help in your scenario:
https://www.youtube.com/watch?v=FaTnOOc34os
In addition, I think the "List Screen" (Screen template) could also achieve your needs. The "List Screen" (screen template) as below:
When you add a "List screen" within your app, it would generate a screen which contains a Search bar box and a gallery automatically as below:
For your second question, do you want to send an reply email within your app? If you want to send an email within your app, I think the Office365.SendEmail() function could achieve your needs. Before using Office365.SendEmail() function, you need to add a Office 365 Outlook connection within your app.
More details about the Office365.SendEmail() function, please check the following article:
Please also check and see if the following video would help in your scenario:
https://www.youtube.com/watch?v=bF7WkqtxKB0
So on your side, you should add the Office365.SendEmail() function within the OnSelect property of the "Submit" button as below:
SubmitForm(EditForm1); /* <-- Submit your internal Note*/ Office365.SendEmail( "user@email.com", "Subject of the email", "Body of the email" )
Best regards,
Kris
What if My list is in a gallery mode?
User | Count |
---|---|
140 | |
133 | |
79 | |
75 | |
74 |
User | Count |
---|---|
210 | |
200 | |
71 | |
66 | |
55 |