Hi @LaurensM ,
Yup, its work some how. But when its just capture on the first row only, and could not capture if second row got value or not. Let me try rephrase this again,...
so at below here, first condition i need the overall weight can only be 50/60/70% only then, check if row 1 Weight have value or not, if have then must enter data until 2.0 then only the Submit button in Edit mode. If the first row total W was not either 50/60/70%, then user still able to enter at 2nd row, and this second row also need to have like same condition of row 1.

previously my formula like below,
IF(Label1_1.text="Error%",DisplayMode.Disabled,
IF(Label1_1.text="50%",DisplayMode.Edit,
IF(Label1_1.text="60%",DisplayMode.Edit,
IF(Label1_1.text="70%",DisplayMode.Edit,DisplayMode.Disable))))
and now i try edit this, but my mind become blank already 😅
If(
CountIf(
Gallery2.AllItems,
IsBlank(TextInput1_31.Text) || IsBlank(TextInput1_34.Text),
IsBlank(TextInput1_37.Text) || IsBlank(TextInput1_40.Text),
IsBlank(TextInput1_43.Text) || IsBlank(TextInput1_46.Text),
IsBlank(TextInput1_49.Text) || IsBlank(TextInput1_52.Text),
IsBlank(TextInput1_55.Text) || IsBlank(TextInput1_58.Text)
) > 0,
DisplayMode.Disabled,
If(
DisplayMode.Edit
)