I create one new form with Multiple add Row view that means user can enter multiple values using default add new button .
Now my scenario is in such case user not adding any even single row user click the submit button we need to show the error message need to add atleast single row .
i was attached the my form .
Question is ) without any single row value form cannot be submitted
Best answer by ajo
Hello,
You can expand on this rule to include all the actions you would need to do if they have rows added to your list view:
for All rows on [LIST VIEW] >>> then transfer data: Set 1 for the Data Label Control If [DATA LABEL CONTROL] contains 0 >>> then show a message: A warning that at least one row should be added Else >>> do the necessary
From the attachment, you have a condition for "If Form passes validation". You can put this within the Else clause.
At the top of my head, you can use a Data Label control to check whether a list view has rows added to it or none. For this Data Label control, you can initially set its value to 0. When the Submit button is clicked, you can do the following:
for All rows on [LIST VIEW] >>> then transfer data: Set 1 for the Data Label Control If [DATA LABEL CONTROL] contains 0 >>> then show a message: A warning that at least one row should be added
You can expand on this rule to include all the actions you would need to do if they have rows added to your list view:
for All rows on [LIST VIEW] >>> then transfer data: Set 1 for the Data Label Control If [DATA LABEL CONTROL] contains 0 >>> then show a message: A warning that at least one row should be added Else >>> do the necessary
From the attachment, you have a condition for "If Form passes validation". You can put this within the Else clause.