Hi everybody,
I'm looking for a macro to find the row (in twho columns) that contains one of the two criteria: "" or "Productivité".
After finding the first row that contains on of these cells, i'm trying a loop to move down this row. if the next down cell does'nt contain neither "" or "productivité i have to resize my range to add one row to it.
that is the problem. When i'm testing `Do While Not Range(strDépartPlage).Value Is Nothing And Range(strDépartPlage).Offset(, -1).Value <> "productivité"` it's not working because of the first condition `Do While Not Range(strDépartPlage).Value Is Nothing ` . And it's due to the fact that the cells contains `#N/A`. How can i deal with that ?
Bookmarks