
Announcements
Hi,
So, I have this condition on DisplayMode. The DisplayMode becomes Edit even though it doesn't fulfill the requirements. I have tested each condition on its own and then it shows DisplayMode.Disabled. But altogether it doesn't work.
Any ideas on why this could be happening? Performance? Other limits?
If(
"FM" in First(ColCandidate).key_fmtm And ActiveModule = 5,
DisplayMode.Edit,
If(
ActiveModule = 2 And CountRows(colProject) <> 0 And !IsBlank(colModules.key_sentsurveycheck),
DisplayMode.Edit,
If(
!IsBlank(colModules.key_sentsurveycheck),
DisplayMode.Edit,
DisplayMode.Disabled
)
)
)
The limit is 2000 rows on the app.
Thankful for any ideas.
One big change I made was to make as much as possible into collections to get around delegation warnings. But I now read that for performance, try to limit the amount of collections. Does anyone know a limit of how many is too much?