Please help. I have a drop down that I would like to filter from a SharePoint List, 'Provider_Resource_Guide'.
AR Start and AR End are number columns w/in SharePoint. If the user types into 'TextInput1' a range that falls between these two numbers, I would like the 'Name (Title)' to return distinct if valid.
This is my formula
Distinct(Filter(Provider_Resource_Guide, 'AR Start' >= TextInput1.Selected.Value) || Provider_Resource_Guide, 'AR End' < TextInput1.Selected.Value) ,'Name (Title)')
Please let me know what I'm doing wrong. Thank you!