Thank you so much LaurensM , ur updated syntax is working great!!!!!
I have one more IF statements i won't to put in there but not sure how to embed two IF statements
If(
Weekday(BusinessDay_DatePicker.SelectedDate,StartOfWeek.Monday) = 5,
Navigate(TimeCardNew, ScreenTransition.Cover),
UpdateContext({ClndrNo:true}) //Change to the correct variable name
);
IsBlank(
LookUp(
Timesheet_Entries_T,
'Employee Name' = User().FullName And WeekEnding = BusinessDay_DatePicker.SelectedDate,UpdateContext({VarName:true}),Navigate(TimeCardNew,ScreenTransition.Cover
)
I want my two if statements to 1. check if the selected date is a Friday and also check if the selected week ending date does not already exist in my table for that specific user .... if the user selects a friday and that friday date does not exist in the my table then i want it to navigate to my next screen.
Hope that makes sense.