Check less than between two columns in excel sheet

Hi,

Can you please help me to check the less than or equal between two specified columns in Excel sheet?

I already get the two columns data using read range activity.

Thank you

You can access the excel column data like below example:

foreach row in dt_Excel
{

if(row(0).ToString = row(1).ToString){
//Your logic here

}

}

@Emman_Pelayo

Can you explain more.?

Thank u