HI @Anonymous ,
Do you want to hide the Data card Value box inside the field data card, instead, use a Checkbox value to assign value?
Based on the issue that you mentioned, I have made a test on my side, please consider take a try with the following workaround:
Set the Default property of the DataCardValue127 inside the BIC Ballpoint Pen Blue to following:
If(
Form2.Mode = FormMode.New,
If(
Checkbox3.Value = true,
1
),
Parent.Default
)
Set the Visible property of the DataCardValue127 to false.
Set the Default property of the DataCardValue128 inside the BIC Ballpoint Pen Black to following:
If(
Form2.Mode = FormMode.New,
If(
Checkbox1.Value = true,
1
),
Parent.Default
)
Set the Visible property of the DataCardValue128 to false.
...
...
Then when you click "Submit" button to submit your form data, the corresponding data card value would be saved back to your SP List.
Please consider take a try with above solution, hopes it could help in your scenario.
Best regards,