I'm very new to PowerApps and am working on my first app - a Purchase Order Request that links to Sharepoint and includes a gallery so the end user can add multiple bids.
Everything is working in the app and it writes to my Sharepoint list, but when I try to view submitted requests, I get this error: Error when trying to retrieve data from the network: Fetching items failed. Possible invalid string in filter query.
Based on some google searches, there is an issue in my ForAll Statement. Can anyone help?
ForAll(Gallery2.AllItems, If(Value(inputItemPrice.Text) <> 0, Patch([@'Purchase Requests Required Bids'], {NewVendor_x003f_:inputNewVendor.Selected.Value, VendorName:inputVendorName.Text, ItemPrice:Value(inputItemPrice.Text), CertifiedMinorityWomenBusinessEn:inputMinWomen.Selected.Value, ChildID:SharePointForm1.LastSubmit.ID})));