Month to date order count in Shopify Flow

I’m not sure there is an easy way to do that currently, since Flow’s “Get order data” action is limited to 100 at a time. You could instead create a shop metafield that you increment for each new order that month. The hard part is tracking the rollover from month to month. Another option would be to run “Get order data” daily to get the daily count and then set the metafield/tag based on that count.

Something like:

  • Every day
  • Get order data
  • Count(order data)
  • If count > 1
    • Update metafield with count
1 Like