Okay, I got it with the If statement. Still couldn't figure out how to make this a switch statement.
Lastly, the results in the dropdown do not appear in A - Z order.
How to update the below so that the results in the dropdown are sorted so that they appear in A - Z order?
If(
PJ_Job_Type_Dropdown.Selected.Value = "Trip" And varAccessLevel = "Administrator",
Distinct(Filter(Trip_Project_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Trip" And varAccessLevel = "Standard",
Distinct(Filter(Trip_Project_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Storm Work" And varAccessLevel = "Administrator",
Distinct(Filter(Storm_Work_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Storm Work" And varAccessLevel = "Standard",
Distinct(Filter(Storm_Work_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Drop" And varAccessLevel = "Administrator",
Distinct(Filter(Drop_Backup_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Drop" And varAccessLevel = "Standard",
Distinct(Filter(Drop_Backup_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Install" And varAccessLevel = "Administrator",
Distinct(Filter(Install_Backup_Collection, Technician_ID_Number = varUniqueID),Location),
PJ_Job_Type_Dropdown.Selected.Value = "Install" And varAccessLevel = "Standard",
Distinct(Filter(Install_Backup_Collection, Technician_ID_Number = varUniqueID),Location))