Hi everyone,
I have two collections with these values and I need to get a collection combining both.
The idea is to get one record for each day of the current month for each employee.
Thanks for any help!
Announcements
Hi everyone,
I have two collections with these values and I need to get a collection combining both.
The idea is to get one record for each day of the current month for each employee.
Thanks for any help!
You're welcome!
d(-_-)b
Thank you DJ !
Try:
Clear(colResult);
ForAll(
Distinct(colEmployees,Employee) As EEs,
ForAll(
colDaysMonth,
Collect(
colResult,
{
Date: Date,
Employee: EEs.Value
}
)
)
)
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1