ContributionsMost RecentMost LikesSolutionsGenerating a unique (but consecutive) ID that resets daily My end user wants a unique ID that consists of “YY” + “DDD” + 12-digit consecutive number that resets to 1 each day - so it would be: 000000000001 000000000002 000000000003… The date parts are cake, but the consecutive number is throwing me for a loop. I suggested using an UUID (which I trimmed of numbers/dashes and down to 12 digits), but they’d rather have the counter. As it’s currently designed, documents are fed into the pipeline one at a time. I could explore batching them each day (which would allow me to use the sequence snap), but I’d prefer to keep the isolation. Is there a way to count how many times the pipeline has run that day? or is there lower-hanging fruit that I’m missing? Solved