I want to select the last Row of Column A where the data " CORRECT " ENDS.
Column A
POWER
POWER
CORRECT
CORRECT
CORRECT
CORRECT
CORRECT
CORRECT
INCORRECT
INCORRECT
I want to select the last row number of Correct
At present i am manually Selecting it
<table width="64" border="0" cellpadding="0" cellspacing="0"><col width="64"><tr height="17"> <td style="height:12.75pt;width:48pt" width="64" height="17">
</td> </tr></table>
Column A
POWER
POWER
CORRECT
CORRECT
CORRECT
CORRECT
CORRECT
CORRECT
INCORRECT
INCORRECT
I want to select the last row number of Correct
At present i am manually Selecting it
Code:
Rows("686:686").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlDown)).Select
Selection.ClearContents
<table width="64" border="0" cellpadding="0" cellspacing="0"><col width="64"><tr height="17"> <td style="height:12.75pt;width:48pt" width="64" height="17">
</td> </tr></table>