Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Any ideas how I would show every 3rd value
I was thinking
IF (FieldValue(CANX_MONTH ,3), CANX_MONTH )
May be this:
If(Mod(CANX_MONTH , 3) = 0, CANX_MONTH)
Works a charm
Thanks