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
Bex89Bex89 

Build a Suggestion Box App: Adding Business Logic (Step 2- error)

I cannot seem to complete Step 2- 'Add a validation rule' https://trailhead.salesforce.com/projects/suggestion_box/steps/suggestion_box_4

The formula given below, seems to be incorrect
Implemented_Date__c > TODAY


Can someone help me please? I'm not sure what I have done wrong?

Thanks in advance.
User-added image
Best Answer chosen by Bex89
Amit Singh 1Amit Singh 1
Hello Rebbecca,

Make sure that data type of "Implemented_Date__c" field is Date OR you can use below formula in place of above.
DATEVALUE(  TEXT(Implemented_Date__c) )>TODAY()
User-added image

Let me know if this helps :)

Thanks,
Amit Singh
 

All Answers

Amit Singh 1Amit Singh 1
Hello Rebbecca,

Make sure that data type of "Implemented_Date__c" field is Date OR you can use below formula in place of above.
DATEVALUE(  TEXT(Implemented_Date__c) )>TODAY()
User-added image

Let me know if this helps :)

Thanks,
Amit Singh
 
This was selected as the best answer
Bex89Bex89
Thanks so much Amit! :)

I realised that the Implemented_Date__c field was infact Date/Time.
Ashlie Miller 8Ashlie Miller 8
Thank you Amit! I ran into that very same issue.