Hi,
I have a gallery that iam trying to filter by a few drop downs, as well as by date range. The dropdown works fine, just having some troubles getting the date range to filter. Any advice would be much appreciated
Filter(EngineTimeSheet,
(Len(JNdrop.Selected.Value)= 0 ||
JobNumber = JNdrop.Selected.Value
) &&
(
Len(TYPEdrop.Selected.Value)=0 ||
TypeOfWork = TYPEdrop.Selected.Value
)&&
(
Len(USERdrop.Selected.Value)=0 ||
Name = USERdrop.Selected.Value
)
Spoiler (Highlight to read)
&&
Date( >=StartDate.SelectedDate && Date <=EndDate.SelectedDate
&&Date( >=StartDate.SelectedDate && Date <=EndDate.SelectedDate
)))