In PowerApps, say I have a button that I want to insert multple records into a table when it's clicked, I know I could just use Patch() multiple times, or have a collection with Patch inside a ForAll(), but that's inefficient, as it will call Patch multiple times, when I could have sworn it was possible to call Patch() in a way that it accepted a table or collection as a parameter and insert all records in one go?
But I can't figure out the syntax.
I should be able to do something like Patch(Source, CollectionOrTable) or Patch(Source, Defaults(Source), CollectionOrTable), shouldn't I?