I am using the Excel VBA Do While function to find the right value. Could you please help me to troubleshoot this?
Do While ActiveCell.Value <> "OK"
ActiveCell.Offset(0, -12).Select
ActiveCell.Value = ActiveCell.Value + 0.25
ActiveCell.Offset(0, 12).Select
Loop
ActiveCell.Offset(0, 1).Select
Do While ActiveCell.Value <> "OK"
ActiveCell.Offset(0, -13).Select
ActiveCell.Value = ActiveCell.Value + 0.25
ActiveCell.offselt(0, 13).Select
Loop
This code will be used for calculation on each column. The code should start from C98, which is formulated and currently stated as "Re-Check" status. But based on the C86, this "Re-check" value will turn out to be "OK" or "#N/A"
If C98 turns out to be "ok", I would like to check C99, too. C99 is also possibly "Re-check" status and this value can be changed to "okay" or "#N/A".
I would appreciate any comments/suggestions for this post.
Thank you in advance.