Hi,
If you are trying to get row value without for each row activity then go with this approach:
First take assign activity and assign a variable like
Testvariable= datatablename.rows(“0”)(“columnname”).tostring
If you’re using for each row activity then
Assign testvariable=rows.item(“columnname”).tostring
Fine
i hope you must have used this within a FOR EACH ROW loop
else you would have got validation error like that row variable is not declared
–so the only thing we need to check is with the datatable along that column Boolean_regolarità
–may that row of that column might not have a value in it…
to validate that use this message box within a IF condition with condition like this NOT String.IsNullOrEmpty(row(“Boolean_regolarità”).ToString)
so only if this condition is true it will get into THEN part where we can have our MESSAGE BOX activity
Hope this would help you
kindly try this and let know for any queries or clarification