Hi All,
I am getting a delegation warning on the code below. I thought that both Filter and Sort could be delegated to SharePoint?
Sort(Filter(active_treat_log, lg_treat_num=varTNum),SortOrder.Descending)
Solved! Go to Solution.
Looks like I was able to fix it with this
SortByColumns(Filter(active_treat_log, lg_treat_num = varTNum),"lg_log_dt", Descending)
Looks like I was able to fix it with this
SortByColumns(Filter(active_treat_log, lg_treat_num = varTNum),"lg_log_dt", Descending)
@burliad ,
Sort will also work
Sort(
Filter(
active_treat_log,
lg_treat_num = varTNum
),
lg_log_dt,
Descending
)
Hi @burliad ,
Has your problem been solved?
If so, you could mark the correct reply as a solution to help others in need.
Best Regards,
Wearsky
User | Count |
---|---|
256 | |
108 | |
97 | |
51 | |
39 |