Adding Multiple Filters in REST

Is there a way to additional filters to the Odata filter results or is it only one filter per query?

Yep, just add ‘and’ or ‘or’ between your criteria

You can have multiples. For example:

$filter= InvcHead_InvoiceDate ge datetime’2023-05-31’ and InvcHead_InvoiceDate le datetime’2024-05-31’

Thank you!! I will try that out. I was just transforming the data that I was pulling into Excel but if I can pre-filter it that would be optimal.