• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Help! Removing Error Automatically...

PP3321

Active Member
Please see below screen shot.

I have error for each data.

I would dread to click one-by-one to get rid of error...

Is there anyway to convert all to number and remove error automatically...?


screenshot.png

Thank you...
 
You need not have to click one by one, Select everything and take action. every cell will follow same.
 
Or by VBA...

Code:
    [AAA1] = 1
    [AAA1].Copy
    Range("A1:A10").PasteSpecial Paste:=xlPasteValues, Operation:=xlMultiply, _
        SkipBlanks:=False, Transpose:=False
    Application.CutCopyMode = False
    [AAA1] = ""
 
Back
Top