You need to sign in to do that
Don't have an account?
Please enter www before entering URL
I am using this validation formula but it's not working
OR(LEN(URL__c) = 1,NOT(CONTAINS("www.",URL__c)))
OR(LEN(URL__c) = 1,NOT(CONTAINS("www.",URL__c)))
You need to sign in to do that
Don't have an account?
for what u need this formula please explain so I can create 1 for you
And Not allow to www.com
OR ( RIGHT( Website__c , 4) <> '.com', LEFT(Website__c , 3) <> 'www' , Website__c ='www.com' )
Take care of case sensitive things.
Thanks
Brahma