Workflow with counting functionality

I am having trouble decribing what functionality I am looking to capture. In essence, I would like a
1 out of 4
2 out of 4
3 out of 4
4 out of 4

text at the bottom of a workflow order report. Does that make sense?

Solved Solved
0 25 693
1 ACCEPTED SOLUTION

I ended up creating a VC with this code. I needed to add another column because we sometimes have same people move in on different dates.

Count(select(vaults[unique_id],
and([contents_name] = [_THISROW].[contents_name],
[move_date] = [_THISROW].[move_date],
[_rowNumber]<=[_thisrow].[_rownumber])
))

View solution in original post

25 REPLIES 25
Top Labels in this Space