Community,
I am not sure how to properly nest in ShowColumns into the below formula:
SortByColumns(
Filter(
AddColumns(
'ESN Ticket Tracker',
"City",
LookUp(
'Networking Device List Master',
'DNS Entity Name' = 'ESN Ticket Tracker'[@cj7y],
City
),
"State",
LookUp(
'Networking Device List Master',
'DNS Entity Name' = 'ESN Ticket Tracker'[@cj7y],
State
)
),
Status = 'Status Dropdown'.SelectedText.Value,
If(
'All States Checkbox'.Value = false,
State = 'State Dropdown'.SelectedText.Value,
State = State
),
If(
'All Cities Checkbox'.Value = false,
City = 'City Dropdown'.SelectedText.Value,
City = City
)
),
"Created",
Descending
)
Any help is appreciated.