Can i configure flag at excel so that automation test case starts data reading from that flag

Is it possible to set some flag to stop test execution at a particular row of excel file and next time when automation test execution starts ,it should start from that Flag where it stopped earlier .Hope i am able to explain what i am looking ?

The easiest way is storing the current row number of excel file to a file (or database).
At the earlier of new test execution, you can read row number from it and save the row number value when the execution ends.

Thanks will try this

How do I get the current row number of the excel file if it is data bound to the test case?