Hello, I have an app that loads the main gallery based on the following filters:
SortByColumns(
Sort(
Search(
Filter(
'Partner Details',
IsBlank(CmbUseCase.SelectedItems.Value) || IsEmpty(CmbUseCase.SelectedItems) || Concat(
CmbUseCase.SelectedItems,
Value & ","
) in Concat(
'Use Case',
Value & ","
),
IsBlank(CmbPartnerType.SelectedItems) || IsEmpty(CmbPartnerType.SelectedItems) || 'Partner Type' in CmbPartnerType.SelectedItems,
IsBlank(CmbRiskProd.SelectedItems.Value) || IsEmpty(CmbRiskProd.SelectedItems) || Concat(
CmbRiskProd.SelectedItems,
Value & ","
) in Concat(
'WC Product',
Value & ","
),
IsBlank(DPFrom.SelectedDate) || IsBlank(DPTo.SelectedDate) || Created >= DPFrom.SelectedDate && Created <= DPTo.SelectedDate
),
SearchBox.Text,
"Title"
),
"ID",
SortOrder.Ascending
),
"ID",
SortOrder.Ascending
)
This works, well; however, instead of filtering by Created date, I want to filter by Latest Update. The data in this field is populated by using this formula:
Text(DateTimeValue(LookUp(colLastUpPart, Partners = ThisItem.Title).'Latest Update'), "mm/dd/yyyy")
Since this information is coming from a collection, the column does not exist in the Sharepoint list; therefore, I cannot get the filter to recognize the values to filter properly.
How can I make the gallery filter the dates based on the values in the Latest Update? Could anyone please assist?
Thanks in advance.