Hi,
I have a simple If statement which shows a list either with or without Filter function.
If(IsEmpty(Dropdown1.Selected), 'Issue tracking', Filter('Issue tracking', Location in Dropdown1.SelectedText.Value))
It checks if something in a dropbox field is selected or not. If nothing is selected it should just show the SP List 'Issue tracking' without any filtering. (This part seems not to work) If something is selected it shows the SP List with a Filter function. (this is working!).
Does anyone has an idea what is wrong here....