
Hello my name is Giovanni Marques and I am a beginner in Power Apps.
I am using Power apps to make the navigation on SharePoint easier. I would like to know if there is any way to create an automation where when I register a new order and select the customer's country, automatically the column of available items would be filtered only for the items available in that region.
For example: if I select the country Brazil, not all items in the company would appear in a list, but only the items available in Brazil.
Hi @Giovanni_7,
Do you want to filter records based on customer country selected?
Could you please tell me more about your scenario?
Actually, it is a little bit complex if you don not have an existing app.
1). You should make sure that you have existing records related to country so that you could filter the items available in the selected country
2). You'd better use Combo Box to select country by setting the Items as List.Country
3). To filter only for the items available, you need to write something as below:
Filter(list,Country=dropdown_country.Selected.Country)