Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Can I get the below expression as highlighted in red.
Basically I am trying to start my counter at 1 and continue till I see null.....same thing repeats but it should from 1 again continue (1,2,3...).
Is this possible some how ?
Hi
Counter:
=If(IsNull(Above([Value])), 1, Above([Counter]) + 1)
or
=If(IsNull([Value]), null(), If(IsNull(Above([Value])), 1, Above([Counter]) + 1))
HTH
Jonathan
Any Ideas ?
Hi
Counter:
=If(IsNull(Above([Value])), 1, Above([Counter]) + 1)
or
=If(IsNull([Value]), null(), If(IsNull(Above([Value])), 1, Above([Counter]) + 1))
HTH
Jonathan
Thanks Jonathan.
You are real guru!
Thanks,
Chiru