function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JohnDuraiJohnDurai 

creating formula field in Flow builder

I am trying to create formulat field inside the flow resource  as below condition.

! (ISBLANK {!$Record.Fieldname}) but getting error on saving. can someone suggest where i am going wrong?

User-added imageThanks!
Best Answer chosen by JohnDurai
VinayVinay (Salesforce Developers) 
Try using below
NOT(ISBLANK({!$Record.Fieldname}))

Found below Idea link on usage of ISBLANK in flow

https://trailblazer.salesforce.com/ideaView?id=0873A000000cOiPQAU

Thanks,