I need to filter based on two similar types of data. I've got "Inspection type 1", "Inspection type 2", and "Maintenance" as options for a Type field. I need to be able to filter by "Inspection type 1" or "Inspection type 2" so I can calculate when the next inspection will need to be done. I previously had one inspection type so to filter I used...
var type = "Inspection"
var relatedfeatures = Filter(related,"Report_type = @type")
...but now I have two. They'll be used in the same way, but I need to be able to list all inspections. How do I put two different variables into "Report_type =
@type"?