Forum Discussion
zaza
5 years agoResolver III
Optimizing ALLEXCEPT - Getting the next date per categories
I wrote this calculated column and it works perfectly, but the problem is that it takes way too much time to load. Question is, how can I optimize this? NextOutboundCall =
VAR __call = Calls[D...
- 5 years ago
zaza , Try a new column like
minx(filter(Calls, [Customer] =earlier([Customer]) && [Date] > earlier([Date]) && [Type] = "OUTBOUND"),[Date])
amitchandak
5 years agoSuper User
zaza , Try a new column like
minx(filter(Calls, [Customer] =earlier([Customer]) && [Date] > earlier([Date]) && [Type] = "OUTBOUND"),[Date])