I want to run a gridview search that pulls all invoices for a certain date range and for transaction "IN" or "CN". How do I add and OR to the Trx Type to include "IN" or "CN"
AND(
{Trx Date} >= DATE(2018,01,01),
{Trx Date} <= DATE(2018,10,31),
{Trx Type} = "IN"
)