Forum Discussion
zaza
Resolver III
5 years agoOptimizing 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
Super User
5 years agozaza , Try a new column like
minx(filter(Calls, [Customer] =earlier([Customer]) && [Date] > earlier([Date]) && [Type] = "OUTBOUND"),[Date])