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
Sami ShakithSami Shakith 

How to compare a date (picklist value) with system date

Hi,
 
I want to create a formula field which returns true or false value by comparing one date (that date will be picklist) with system date. Please anyone help me.
dillip nayak 3dillip nayak 3
HI Please try it

IF(LastModifiedDate__c>=acc.CreatedDate, true, false)
SaranSaran
Hi Sami,

You want to compare the system date with currently selected picklist value or you wanted it to compare with the whole values in the picklist.

Thanks,

 
Sami ShakithSami Shakith
Hi, 

I want to compare the system date with currently selected picklist value
Sami ShakithSami Shakith
Hi,

My picklist value is 1,2,3..30 like that and i have to compare this picklist value with the current date. how can i? please i need some one help.