My datasource has both Name and Date fields, as per CRM view that I am fetching data from.

However, when get .Date and .Name field, all 'Date' fields are fetched correctly, but 'Name' fields are missing for some rows.

Edit: The 'Value' column in 'varDateRange' matches the date with record of '08/02/2024, 00:00:00' above with missing 'Name' value.

May I know why this situation occurred, as this wasn't happening earlier in the day.
Below is my formula for reference.
Thank you
//Store Public Holidays Date and Name
ClearCollect(
ServiceCalendarDateAndNameBetweenSelectedDates,
AddColumns(
Filter(
varDateRange,
Value in Filter(
'Service Calendars',
'Service Calendars (Views)'.'Active Service Calendars'
).Date
),
"Name", LookUp('Service Calendars', Date = Value).Name
)
);