Hello - I'm new to Power Apps. I would like to add the following 2 functions below to Items property.
Function 1: Filter('Strategic Housing Engagement Form',drpOfficerName.Selected.Value="All" || 'Officer Name'.Value=drpOfficerName.Selected.Value)
Function 2: If (varPageSize=1,FirstN('Strategic Housing Engagement Form',varPageSize*drpPageSize.SelectedText.Value),
LastN(
FirstN('Strategic Housing Engagement Form',varPageSize*drpPageSize.SelectedText.Value),
drpPageSize.SelectedText.Value
)
)
How do I combine these two functions in the ITEMS property of my table? I'm appreciated for your help.