You need to sign in to do that
Don't have an account?

Need validation rule on created date field for new opportunity created.
HI everyone
i have one validation rule like below
MONTH(CloseDate) < MONTH(TODAY())
it works fine but i need it to fire only for a new opportunities not for old.
for that purose i did this
AND(
Id =='0',
MONTH(CloseDate) < MONTH(TODAY())
)
but it not work .
please guide me what can i do to achieve this.
Thanks.
I guess what you're referring to is you want to fire on Insert not on Update
If that is the case you can use ISNEW() function in validation rules
All Answers
I guess what you're referring to is you want to fire on Insert not on Update
If that is the case you can use ISNEW() function in validation rules
thanks
i did like this and it works.
AND( ISNEW(),MONTH(CloseDate) < MONTH(TODAY()))