I want to insert a row using the following formula:
ClearCollect(TempName, { Name: "John"}, { Name: "Doe" }); Collect('[dbo].[Name]', TempName)This will insert two rows into my SQL Server table Name.
(1, John) , (2, Doe)
I basically want to return the two ID's 1 and 2 into my application. Is this possible with PowerApps at present?