Hi I am trying to use previous field on a formula field and it wouldn't work.
for a formula called tracking
if next({CASE_ID}) = {CASE_ID} and not isnull({TRACKING_NUMBER}) and next({TRACKING_NUMBER}) <>{TRACKING_NUMBER} then
{TRACKING_NUMBER} +","+ previous({@tracking})
then it would give me an error saying A formula cannot refer to itself, either directly or indirectly
I just wanna do this
Case ID tracking number @tracking
1234 1
1234 4 4,1
1234 7 7,4,1
How can I do this ?
Please help
Thank you
for a formula called tracking
if next({CASE_ID}) = {CASE_ID} and not isnull({TRACKING_NUMBER}) and next({TRACKING_NUMBER}) <>{TRACKING_NUMBER} then
{TRACKING_NUMBER} +","+ previous({@tracking})
then it would give me an error saying A formula cannot refer to itself, either directly or indirectly
I just wanna do this
Case ID tracking number @tracking
1234 1
1234 4 4,1
1234 7 7,4,1
How can I do this ?
Please help
Thank you