Good day
I have a few checkboxes who's value must save to a SQL database:

This is the code behind the Submit button (SelectedRecord is the variable):
Patch(SelectedRecord, {'WATCHLIST RISK INCLUSIVE': WListInclusiveDD.SelectedText.Value, 'Economic Risks': EconomicRiskChk.Value, 'Business Risks': BusinessRiskChk.Value, 'Financial Risks': FinRiskChk.Value, 'Credit Risk Migration': CreditRiskMitChk.Value, 'Covenant Breaches': CovenantBreachesChk.Value, 'Other Material Breaches': OtherChk.Value, 'WATCHLIST RISK COLOUR': WListRiskColourDD.SelectedText.Value, HI_CapturedBy: CapturerTxt.Text, HI_DateUpdated: CaptureDate.SelectedDate}); Navigate(ThankYou)
I am however getting the following error:

The field types in SQL is "Bit" (and I have also tried "Int"), but somehow I keep getting the error on a few of the Risk fields. Can you perhaps advise me what I am doing wrong?
Thank you