this is currently what I have: Obviously not working; But i also want to implement count only if crosses quarters.
IF({!$Record.PushCount}=NULL,1,({!$Record.PushCount}+1))
#flow
1 answer
Hi ,
Try this
IF(OR( ISBLANK({!$Record.PushCount}),{!$Record.PushCount}=0),1,({!$Record.PushCount}+1))