Need to filter order with a date in a tag

I need to search orders and filter ones where a date in the tag field (only date there) is before today and the order is unfulfilled. This will alert us of overdue orders. The date is populated by an add on that lets customer pick their desired ship by date.

I can’t figure out the proper way to put this into the filter since it’s just text.

Hey there,

What are the options you currently have to put in the filter? Can you show some screenshots of the setup so far and what the output bundle looks like?

If the date is stored inside a tag, you can parse it using a filter function or script block before comparing it to your condition. I’ve handled similar cases by splitting the tag string and converting it into a proper date object. Once formatted correctly, applying filters like “greater than” or “before” works reliably.