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.
77
80
@@ -81,20 +84,14 @@ Dataverse for processing (rather than processing locally within Power Apps).
81
84
3. DateTime is delegable except for DateTime functions Now() and
82
85
Today().
83
86
84
-
4. Supports comparisons. For example, Filter(TableName, MyCol = Blank()).
87
+
4. Supports comparisons. For example, `Filter(TableName, MyCol = Blank())`.
85
88
86
89
5. The aggregate functions are limited to a collection of 50,000 rows. If
87
-
needed, use the Filter function to select 50,000 rows from a larger set
88
-
before using the aggregate function.
90
+
needed, use the Filter function to select 50,000
89
91
90
-
> [!NOTE]
91
-
> Choices, Guids, and Aggregate functions for Dataverse are supported only with
92
-
the new version of the connector. Depending on the version of Power Apps that
93
-
you're using, enable this connector with either the **Preview** switch titled **Relational data, choices, and other new features for Dataverse** or **Experimental** switch **Use the Dataverse connector**. To find these switches, select **Settings** > **Upcoming features** > **Preview** or **Experimental**.
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)`.
94
93
95
-
## Dataverse and the improved data source experience
96
-
97
-
If you created a canvas app with a Microsoft Dataverse connector prior to November 2019, then you might not have the benefit of the most current version of the Dataverse. Read [Dataverse connection improvements](../use-native-cds-connector.md) for more details and to upgrade your connection.
94
+
7. For CountRows, ensure that users have appropriate permissions to get totals for the table.
0 commit comments