Skip to main content

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
  1. Jun 29, 2022, 10:58 PM

    Hi ,

     

    Try this

     

    IF(OR( ISBLANK({!$Record.PushCount}),{!$Record.PushCount}=0),1,({!$Record.PushCount}+1))

0/9000