Hi All,
I am trying to filter gallery where I have a column in SQL which contains values like "File,List,First Nation" etc.
So, if Flag column contains "File" it should not show data.
Below is the formula currently using.
SortByColumns(
Search(
Filter(
vw_MasterBooking,
Location = ddlHomeCourtLocation_2.Selected.Court_Name,
ddlHomeCaseType_2.Selected.Value = "All" || Hearing_Type = ddlHomeCaseType_2.Selected.Value,
Booking_date_int >= Value(
Text(
dteHomeStartDate_2.SelectedDate,
"[$-en-US]yyyymmdd"
)
) && Booking_date_int <= Value(
Text(
dteHomeEndDate_2.SelectedDate,
"[$-en-US]yyyymmdd"
)
),
ddlHomeListType_2.Selected.Value = "All" || List_Type = ddlHomeListType_2.Selected.Value
),
txtDashdboardSearch_2.Text,
"case_number"
),
"Status",
SortOrder.Ascending,
"Booking_date_int",
SortOrder.Ascending
)
Thanks