Hello,
I am currently having beginner level skills in development of Power apps solution, therefore looking for solution for the below issue in this community of experts.
I am creating a gallery in power apps along with a dropdown. The gallery should only display data when a field is selected from dropdown menu. Dropdown fields values also contain blank values, but the gallery should able to show the other fields related to the blank values. By default gallery data will show blank values or gallery should be invisible for the users if no values have been selected.
The properties of dropdown are set as :
Item : Employee
Value : employee_name
Default: Blank()
The properties of gallery are set as :
Items: Filter(Employee,
employee_name = Dropdown.Selected. employee_name)
Visible : If(
!IsBlank(Dropdown1.Selected.employee_id),
true,
false)
Default : Blank()
I can achieve the desired result in DEV environment but when I export the solution from DEV and IMPORT the solution to TEST environment, the gallery is showing the list of all employees by DEFAULT.
Can anybody help me to achieve the desired solution ?
Thank you in advance !