Hi,
I am wanting to create a count that increases if a condition has been met. So as an example, if TIME is greater than 100 then the COUNT increases, otherwise it stays the same:
TIME - COUNT
20 - 1
70 - 1
130 - 2
220 - 3
40 - 3
80 - 3
370 - 4
Been stuck trying to figure this out for a while. With Python this would be easier with the use of variables but I am struggling with FME on this one.
I see the Count transformer has 'Group By' capability but I don't think that helps me for this situation.