Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб Salesforce Validation Rules Part 5: OR vs AND Functions в хорошем качестве

Salesforce Validation Rules Part 5: OR vs AND Functions 1 месяц назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



Salesforce Validation Rules Part 5: OR vs AND Functions

In Salesforce Validation Rules, the `OR` and `AND` functions are used to evaluate multiple conditions, but they behave differently based on how these conditions are met: OR Function: Purpose: The OR function returns TRUE if any one of the specified conditions is true. It is used when you want to trigger a validation rule if at least one of several conditions is met. Example: OR(ISBLANK(Phone), ISBLANK(Email)) AND Function: Purpose: The AND function returns TRUE only if all of the specified conditions are true. It is used when you want to trigger a validation rule only if multiple conditions are simultaneously met. Example: AND(ISBLANK(Phone), ISBLANK(Email)) Key Difference: OR is inclusive: The rule activates if any condition is met. AND is exclusive: The rule activates only if all conditions are met.

Comments