Hi @Anonymous,
Could you please share more details about your SQL table?
Which data type is the IsApproved column in your SQL table?
The error message told that the value that you provided for the IsApproved column is invalid. The required data type of the IsApproved column is Boolean type, but you provide a Text type (String type).
I have made a test on my side and please take a try with the following workaround:
The OnSelect property of Button control set to following formula:
Collect('[dbo].[Vendors]',{Vendor_Id:TextInput1.Text,StoreName:TextInput2.Text,Mobile:TextInput3.Text,StoreAddress:TextInput4.Text,IsApproved:If(Dropdown1.Selected.Value="True",true,false)})
Note: The IsApproved column is a bit type column in my SQL Table. In addition, the Items property of the Drop down control (related to IsApproved column) set to following formula:
Dropdown1.Items=["True","False"]
The PowerApps app works well as below:
On your side, please take a try with the following formula:
Button.OnSelect=Collect('[dbo].[Vendors]',{ID:Value(id.text),StoreName:storename.text,...IsApproved:If(approved.Selected.Value="true",true,false),IsAvailable:...})
Note: Same formula for IsApproved column is also adapted for Is Available column and IsVerified column.
Best regards,
Kris