PP3321 Active Member May 12, 2016 #1 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...? Thank you...
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...? Thank you...
Ashhu Active Member May 12, 2016 #2 You need not have to click one by one, Select everything and take action. every cell will follow same.
You need not have to click one by one, Select everything and take action. every cell will follow same.
Deepak Excel Ninja May 13, 2016 #4 You may also use the follow the below for large data set.. insert 1 in c5>Copy it>now select entire data cells>paste special>Multiply>ok
You may also use the follow the below for large data set.. insert 1 in c5>Copy it>now select entire data cells>paste special>Multiply>ok
Deepak Excel Ninja May 13, 2016 #5 Or by VBA... Code: [AAA1] = 1 [AAA1].Copy Range("A1:A10").PasteSpecial Paste:=xlPasteValues, Operation:=xlMultiply, _ SkipBlanks:=False, Transpose:=False Application.CutCopyMode = False [AAA1] = ""
Or by VBA... Code: [AAA1] = 1 [AAA1].Copy Range("A1:A10").PasteSpecial Paste:=xlPasteValues, Operation:=xlMultiply, _ SkipBlanks:=False, Transpose:=False Application.CutCopyMode = False [AAA1] = ""
Deepak Excel Ninja May 14, 2016 #9 This might be useful too.. https://wmfexcel.com/2016/05/14/number-stored-as-text/