I am looking to find out why my code is behaving in this way. I put an X character in one of several cells depending on a condition.
The line to output this is:
If I put a breakpoint at this line, then hit F5 to continue, no value appears. However, if at the breakpoint I use F8 to step into one line, the X appears
as expected. Then if I F5 to continue the X remains.
I've verified that screen updating is on. Any help in where to look to solve this would be appreciated, it just makes no sense to me right now.
Thanks
The line to output this is:
Code:
Sheets("Sheetname").range("C3") = "X"
If I put a breakpoint at this line, then hit F5 to continue, no value appears. However, if at the breakpoint I use F8 to step into one line, the X appears
as expected. Then if I F5 to continue the X remains.
I've verified that screen updating is on. Any help in where to look to solve this would be appreciated, it just makes no sense to me right now.
Thanks