You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Numeric with arithmetic expressions (for example, `Filter(table, field + 10 > 100)` ) aren't delegable. Language and TimeZone aren't delegable. Casting to a column to a number isn't supported.
80
-
81
-
2. Doesn't support Trim[Ends] or Len. Does support other functions such as
82
-
Left, Mid, Right, Upper, Lower, Replace, Substitute, etc. Also, casting such as Text(column) isn't supported for delegation.
83
-
81
+
2. Doesn't support Trim[Ends] or Len. Does support other functions such as Left, Mid, Right, Upper, Lower, Replace, Substitute, etc. Also, casting such as Text(column) isn't supported for delegation.
84
82
3. DateTime is delegable except for DateTime functions Now() and
85
83
Today().
86
-
87
-
4. Supports comparisons. For example, `Filter(TableName, MyCol = Blank())`.
88
-
89
-
5. The aggregate functions are limited to a collection of 50,000 rows. If
90
-
needed, use the Filter function to select 50,000
91
-
92
-
6. CountRows on Dataverse uses a cached value. For non-cached values where the record count is expected to be under 50,000 records, use `CountIf(table, True)`.
93
-
94
-
7. For CountRows, ensure that users have appropriate permissions to get totals for the table.
84
+
4. CountRows on Dataverse uses a cached value. For non-cached values where the record count is expected to be under 50,000 records, use `CountIf(table, True)`.
85
+
5. For CountRows, ensure that users have appropriate permissions to get totals for the table.
86
+
6. The aggregate functions are limited to a collection of 50,000 rows. If needed, use the Filter function to select 50,000. Aggregate functions are not supported on Views.
87
+
7. FirstN is not supported.
88
+
8. Supports comparisons. For example, `Filter(TableName, MyCol = Blank())`.
95
89
96
90
97
91
## Call Dataverse actions directly in Power Fx (preview)
0 commit comments