Hello all,
Got what should be a simple question but I'm struggling. I have a text input that works as a lookup in my Excel data to pull email address based on a couple dropdowns in my app. I would like to add some text from a text input in the app to allow people to add more email addresses that might not be in the Excel data. My first input box looks like this for the text property.
Filter(Emails, Location&Department = ddLocation.Selected.Locations&ddDepartment.Selected.Result)
with an output of something like this. email1@email.com,email2@email.com
I would like to allow the user to add emails based on the input box in the app. I have tired these.
Filter(Emails, Location&Department = ddLocation.Selected.Locations&ddDepartment.Selected.Result)&", "&tiAddNote.Text
Filter(Emails, Location&Department = ddLocation.Selected.Locations&ddDepartment.Selected.Result)&&", "&&tiAddNote.Text
Filter(Emails, Location&Department = ddLocation.Selected.Locations&ddDepartment.Selected.Result&", "&tiAddNote.Text)
The first 2 give me an error and the 3rd gives me no output.
Any ideas?
Thanks,
Stephen