Hi,
I have a source that has a list of dates in "Date" (Stored in "dd/mm/yyyy" format). I also have a calculated column called "Month Completed" (Stored in "mmmm yyyy" format).
I am trying to create a label with a count to count the current completed tasks within the month. However, I get a delegation error. As this list will likely get larger than 2000 I am trying to resolve the delegation warning.
Delegation warning is coming from this part of the code "Month(Date) = Month(Now()) &&"
Code:
CountRows(
Filter(
'Site Audits',
Month(Date) = Month(Now()) && ( If(
LookUp(
'Engineer List',
EngineerName = User().FullName
).Title = "Service Manager",
Region = LookUp(
'Engineer List',
EngineerName = User().FullName
).Region,
Title = User().FullName
) )
)
)

Report
All responses (
Answers (