I want to filter my list using lookup and title column. Below is the filter function that I created and working but I want to join them together. In order to check if there is an item that have an equal Title and Type of Job. By the way my lookup column has a multiple values.
!IsEmpty(
Filter(Choices('Job Type Questions'.'Type of Job'), Value = selectedJobTypeRecord)
)
!IsEmpty(
Filter('Job Type Questions', Title = "Walls")
)
I already tried this filter but if gives me a warning on the `=`
!IsEmpty(
Filter('Job Type Questions', Title = "Walls" && selectedJobTypeRecord = 'Type of Job'.Value)
)