SQL Data Table = "Locations"
Table Columns = "LOCATIONNAME" & "STATUS"
I'm trying to create a dropdown menu for a user to select a level.
Then based on the level they pick, they are provided a list of locations on that level.
DropDown1 = Filters "Status", Sorts "Location Name", Left "Location Name" & Distinct "Location Name" = 12-345XC -> "12"
DropDown2 = LookUp "DropDown1" with StartsWith "DropDown1" = "12-345XC", "12-456XC", "12-567", etc
E.g.
DropDown1 = shows "60", "61", "65" -> select "60"
DropDown2 = shows "60-300XC" & "60-500XC" only
Can this even be done? I know it would be easier to just simply add "Level" into the database, but I don't have that access.
| LOCATIONNAME | STATUS |
| 60-300XC | Active |
| 65-850XC | Not Active |
| 60-500XC | Active |
| 61-400XC | Not Active |
| 61-540XC | Active |
| 61-800XC | Active |
| 65-100XC | Active |
| 61-100XC | Active |
| 65-700XC | Active |
| 60-100XC | Not Active |
| 65-800XC | Active |