Had a Partner ask if there is anything that does a "last non zero value" like our first non zero. Discussed ranking, but apparently that wouldn't work.
The modeler can achieve the same effect with a simple formula. Imagine a numeric line item called Input. The last non-zero value (across a timescale, assuming that's the use case) can be computed for a line item Output using Output = IF Input <> 0 THEN Input ELSE PREVIOUS(Output)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.