Understanding Validation Rules in Salesforce and how to create them?

  Рет қаралды 55,038

Salesforce Hulk

Salesforce Hulk

Күн бұрын

Пікірлер: 52
@bb_gudavalli
@bb_gudavalli 8 ай бұрын
well understood, Thanks for the recordings Shrey
@SalesforceHulk
@SalesforceHulk 8 ай бұрын
Glad you found it helpful !
@latarishabh
@latarishabh 4 жыл бұрын
Thanks for your support brother
@bharathveerabomma8519
@bharathveerabomma8519 3 жыл бұрын
good example mam, got the concept of validation rule
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
Thanks
@jaybharat3949
@jaybharat3949 Жыл бұрын
Valuable videos❤
@deerghasirahul1345
@deerghasirahul1345 3 жыл бұрын
Hi Shrey, The requirement is - 1. If we select any of the above stages as mentioned, it should ask us to fill the Opportunity origin field. Which is working. 2. Also, the above validation should not work when the Closed Lost stage is selected. Can you please suggest ?? AND( OR( ISPICKVAL( StageName , "E - Minimal Interest"), ISPICKVAL( StageName , "D - Qualified Suspect"), ISPICKVAL( StageName , "C - Evaluation"), ISPICKVAL( StageName , "B - Decision Due"), ISPICKVAL( StageName , "A- Pending Sale"), ISPICKVAL( StageName , "Stated Intent to Purchase") ), ISBLANK( TEXT(Opportunity_Origin__c ) ) )
@archanajagadale7077
@archanajagadale7077 3 жыл бұрын
Excellent. Understood. thank you
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
My Pleasure!
@SureshGupta-hw2cs
@SureshGupta-hw2cs 4 жыл бұрын
Hello sir I have a some doubt I creat a student tab but many information are not available Like as a steam opted , initial free field dependencies So pls give me solution
@egistbalegistbal7720
@egistbalegistbal7720 2 жыл бұрын
Can you plesae add all videos subtitles,Sir.
@aruchopra6828
@aruchopra6828 4 жыл бұрын
Hey Shrey, can you please make a video on how to use functions(in validation rules) and when? Like in which situation what functions we should use. If it's possible for you.
@sandybhalerao6873
@sandybhalerao6873 4 жыл бұрын
Hi Aru this will also help help.salesforce.com/articleView?err=1&id=customize_functions_a_h.htm&type=5
@satyarenuka9774
@satyarenuka9774 2 жыл бұрын
@@sandybhalerao6873 thanks
@subbukalyanam
@subbukalyanam 3 жыл бұрын
I have written the code as it is as in the video but still getting syntex error: ', ' at false. Please clarify
@pankajghasoliya5709
@pankajghasoliya5709 4 жыл бұрын
great video and outstanding concept👌👌
@Jushyanth
@Jushyanth 3 жыл бұрын
Very Good explanation
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
Thanks for liking
@BAALA_ONLY
@BAALA_ONLY 5 ай бұрын
BHAIYA AAPNE LAST MAI COURSE OPTED KAISE AAYA YE VALIDATION RULES MAI Y NI SAMJHA OR MAI INSERT FEELD KAR RHA HU TO ERROR SHOW KAR RHA
@SalesforceHulk
@SalesforceHulk 5 ай бұрын
Please watch the video carefully as everything is covered in it. If you encounter any errors while implementing, feel free to email us a screenshot of the error at Salesforcehulk@gmail.com.
@siddhikajain5810
@siddhikajain5810 3 жыл бұрын
Very well explained
@marieahlgren-stephanos4900
@marieahlgren-stephanos4900 2 жыл бұрын
how can I change the value of a field based on another field (check box) ?
@akashjain3742
@akashjain3742 3 жыл бұрын
Shrey bro,I will give the appreciation for solving the concept of Salesforce,but I have a concern actually I am unable to understand the function , because when function have to apply.
@nirupammahindra6165
@nirupammahindra6165 3 жыл бұрын
boolean valCheck(RegFees,CourseOpted){ if(CourseOpted!=SalesForceAdmin||CourseOpted!=SalesForceDeveloper||CourseOpted!=BigData){ return RegFees
@madhusmitaborah9921
@madhusmitaborah9921 3 жыл бұрын
Hello Shrey..Could you please make a video on Process Builder.
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
Already there, please check on the channel!
@paraglanjewar8498
@paraglanjewar8498 3 жыл бұрын
process buider video is not available.. @@SalesforceHulk
@satishbangaram
@satishbangaram 2 жыл бұрын
The main requirement is Old value and new value should be added together. I am writing the validation rule (prorvalue [advance amount__c] )+advance amount). But it is getting an error, please the formula , please solve it.
@bkr6273
@bkr6273 2 жыл бұрын
Sir your notes are now downloading, plz give another link
@Anu-wh1fs
@Anu-wh1fs 3 жыл бұрын
Tysm bro☺
@adityanandan01
@adityanandan01 2 жыл бұрын
always syntax errors ..please solve my problem
@deepakmongia5965
@deepakmongia5965 3 жыл бұрын
Hi guys, does anyone knows the answers of the questions asked by in the end of the video, would be much appreciated! best, deepak
@pracheechandrakar6220
@pracheechandrakar6220 3 жыл бұрын
1- Student name should not accept number and special character. ans-NOT(REGEX( Student_name__c,"[a-zA-Z\\s]+")) 2-age should be greater than 12yrs. ans -YEAR(TODAY())- YEAR(BirthDate__c) 30,True,False) 4-contact ans- IF( REGEX( contact_number__c , "[0-9]") , true, NOT(REGEX( contact_number__c , "\\D*?(\\d\\D*?){1,10}"))) 5- aadhar card Ans- set your field as number and its field length as 12...- you cant use LEN over here or set the field as text and field length as 12....and in formula. LEN(ADHAR_card_C)12
@lakshmansfdc
@lakshmansfdc 3 жыл бұрын
@@pracheechandrakar6220 in the first answer after "]" why there is a "+" operator. Can you please explain?
@pracheechandrakar6220
@pracheechandrakar6220 3 жыл бұрын
For concatenation mean for joining more than one letter. If you will write "lakshman" as name...it won't get saved ..but if you will write just L as name..it'll get saved...so + is here to join more than one letter
@lakshmansfdc
@lakshmansfdc 3 жыл бұрын
Okay understood. Thank you for your prompt response.
@niteshbhoyar9069
@niteshbhoyar9069 2 жыл бұрын
@@pracheechandrakar6220 for 4. contact ...I am getting this error Incorrect argument type for function 'REGEX()'. can you help me.
@sarugupta8578
@sarugupta8578 3 жыл бұрын
I am Woman (mother) restarter... Looking for internship or job in salesforce admin... looking for help...
@debmalyaray1997
@debmalyaray1997 3 жыл бұрын
shrey bhai that registration date validation rule i didnot understand that gap of atleast 30 days required that you were saying bro....
@leenaghai7573
@leenaghai7573 3 жыл бұрын
Hey shrey..please make a video on formula fields
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
Sure I will
@sunithar7343
@sunithar7343 3 жыл бұрын
@@SalesforceHulk Formula Fields and Cross Object Formula are one and the same?
@ashishshrivastav4911
@ashishshrivastav4911 2 жыл бұрын
if(fee
@latarishabh
@latarishabh 4 жыл бұрын
Thanks for your support brother
@MDASIF-wo7ck
@MDASIF-wo7ck 3 жыл бұрын
Very well explained
@SalesforceHulk
@SalesforceHulk 3 жыл бұрын
Keep watching
What is Lookup Filter and Schema in Salesforce?
27:46
Salesforce Hulk
Рет қаралды 35 М.
What is Lookup Relationship in Salesforce?
2:12:12
Salesforce Hulk
Рет қаралды 79 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН
Как Я Брата ОБМАНУЛ (смешное видео, прикол, юмор, поржать)
00:59
За кого болели?😂
00:18
МЯТНАЯ ФАНТА
Рет қаралды 3,3 МЛН
Ultimate Guide to Salesforce Validation Rules (+8 Examples)
13:25
Salesforce Ben
Рет қаралды 5 М.
What is Record ID in Salesforce?
20:12
Salesforce Hulk
Рет қаралды 20 М.
What is Master-Detail Relationship in Salesforce?
24:06
Salesforce Hulk
Рет қаралды 51 М.
Learn Reports in Salesforce
1:43:53
Salesforce Hulk
Рет қаралды 72 М.
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН