Hi @Anonymous ,
Do you want to check if there are no records selected within the Data Table?
In default, the first record within the Data Table would be selected, there is no way or function supported to unselect the record from the Data Table.
If you want to check if there are no records in your Data Table, I think the IsBlank() function could achieve your needs. Please consider take a try with the following formula (set the Text property of a Label to following😞
If(
IsBlank(DataTable1.Selected),
"No records in Data Table",
"Have records in Data Table"
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,