From ae5fde4129835d8ea2c14a91164c787fc4abae3d Mon Sep 17 00:00:00 2001 From: chandlersyal <66968984+chandlersyal@users.noreply.github.com> Date: Fri, 13 Sep 2024 09:37:00 -0400 Subject: [PATCH] Update LAB[PL-200]_M07L01_Business_rule.md --- Instructions/Labs/LAB[PL-200]_M07L01_Business_rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instructions/Labs/LAB[PL-200]_M07L01_Business_rule.md b/Instructions/Labs/LAB[PL-200]_M07L01_Business_rule.md index 66d29b0..346e174 100644 --- a/Instructions/Labs/LAB[PL-200]_M07L01_Business_rule.md +++ b/Instructions/Labs/LAB[PL-200]_M07L01_Business_rule.md @@ -236,7 +236,7 @@ In this practice lab, you will be creating business rules to show and hide the l 1. Enter the following **Expression**. ``` - If(ThisRecord.'Scheduled Start' > ThisRecord.'Scheduled End', + If(NewRecord.'Scheduled Start' > NewRecord.'Scheduled End', Error({Kind: ErrorKind.Validation, Message: "The start date cannot be after the end date" }) ); ```