Hi@GeorgeLong94,
Based on the issue that you mentioned, do you want to color the selected row within the DataTable?
There is a property named "SelectedColor" which means the color of the text in the selected row in the Data table control. I think you can achieve this by "SelectedColor" property.
- Set the SelectedColor property of the Data Table as below
If(DataTable3.Selected.Status.Value="Published",Green,Black)
Note: 'Status' column in my SP list is a Choice column, so l quote it as the format of "DataTable3.Selected.Column.Value". If yours is a Text column, please modify the formula as below.
If(DataTable3.Selected.Status="Published",Green,Black)

Best Regards,
Qi