I have a dropdown list and 2 TextBox's. My dropdown contains the value I need to use to lookup what I need in a SharePoint List. I use the following Filter statement:
Sort(Filter(Available_Components, Location=dd_DataCardValue2.Selected.Location && Enabled="Y"), Component, Ascending)
However, I am receiving the message 'The function 'Sort' has some invalid arguments". I have tried not using Sort and just Filter, but it tells me I am missing an argument. Ultimately, I would like to find the best way to use the value from my dropdown to find the row in my SharePoint List to display 2 different cells in my 2 Textbox's.