Difference between revisions of "Dataverse Connector"
Jump to navigation
Jump to search
(Created page with "The Dataverse Connector is used in Power Automate cloud flows to connect to your Dataverse data. This page gathers tips and tricks. == Community Resources == * [https://onli...") |
|||
Line 1: | Line 1: | ||
The Dataverse Connector is used in Power Automate cloud flows to connect to your Dataverse data. This page gathers tips and tricks. | The Dataverse Connector is used in Power Automate cloud flows to connect to your Dataverse data. This page gathers tips and tricks. | ||
+ | |||
+ | == Tips and tricks == | ||
+ | |||
+ | === List Rows === | ||
+ | * After using List Rows, if you want to check if there was no rows returned, use this expression <i> empty(body('List_records')?['value']) </i> in a condition. If that is equal to true - means no rows returned. | ||
== Community Resources == | == Community Resources == | ||
* [https://onlinemgblog.wordpress.com/2021/06/05/building-flow-2-dataverse-get-optionset-label/ Building Flow #2: DataVerse: Get Optionset Label] | * [https://onlinemgblog.wordpress.com/2021/06/05/building-flow-2-dataverse-get-optionset-label/ Building Flow #2: DataVerse: Get Optionset Label] |
Revision as of 08:55, 15 December 2021
The Dataverse Connector is used in Power Automate cloud flows to connect to your Dataverse data. This page gathers tips and tricks.
Tips and tricks
List Rows
- After using List Rows, if you want to check if there was no rows returned, use this expression empty(body('List_records')?['value']) in a condition. If that is equal to true - means no rows returned.