I want to copy data from one field in another if checkbox is true, I know I can do it by trigger but I want to do it in formula field, I don't know how to check the checkbox field my code is like this
IF (
AND(
ISPICKVAL( Lease_Lease_Assign_Applicable__c, "Yes" ),
Lease_Assignment_Received__c
),
"Yes",
"NA"
)