Hi I need to Union a Collection in to a Sql table. I can remove rows using the app but I can´t add any.
Collection is named: TempAccess (multiple rows)
Table is named: Access
The columns are named the same in both: UserID, AccessID and in Access they are set as Primary Key.
I´ve tired this:
ClearCollect('[dbo].[Access]',TempAccess)
and a bunch of other stuff.
Any Ideas?
Solved! Go to Solution.
Thanks for the input @WarrenBelz
I solved my issue this way
Collect(
'[dbo].[Access]',
TempAccess
);
Best regards
Måns
Hi @Måns ,
Try
Clear(colNewCollection);
Collect(
colNewCollection,
'[dbo].[Access]',
TempAccess
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Thanks for the input @WarrenBelz
I solved my issue this way
Collect(
'[dbo].[Access]',
TempAccess
);
Best regards
Måns
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
199 | |
97 | |
56 | |
51 | |
41 |
User | Count |
---|---|
266 | |
156 | |
83 | |
81 | |
56 |