If I got it right, you need the current row and the previous one to have the same DLV.
I’d advise you to extract these data to another sheet with only one header, so you could loop through the entire data table.
But considering the way it is, you would need 2 ‘read range’ activity inside an excel scope
One reading the current range and the other reading the previous, making 2 indexes. So your index would start at 5 and your prevIndex starting at 4, it will be something like this:
Read range “H” + index.tostring
Read range “H” + prevIndex.tostring
then you compare the 2 resulting values and then click print, next you add 1 to both of the indexes and keep looping until the end of the table