There has to be a way to do this other than multiplying by -1???
J JE McGimpsey Feb 7, 2007 #4 Well, you could subtract the negative number from itself, then subtract it again... If you mean "a way to do this other than a formula", then one way: Edit/Replace Find what: - Replace with: <leave blank>
Well, you could subtract the negative number from itself, then subtract it again... If you mean "a way to do this other than a formula", then one way: Edit/Replace Find what: - Replace with: <leave blank>
F Francois via OfficeKB.com Feb 7, 2007 #5 bmmclen said: There has to be a way to do this other than multiplying by -1??? Click to expand... Cell A1 enter a negative No. in another cell enter =ABS(A1) Answer is positive No.
bmmclen said: There has to be a way to do this other than multiplying by -1??? Click to expand... Cell A1 enter a negative No. in another cell enter =ABS(A1) Answer is positive No.
M Mike Feb 7, 2007 #8 =MID(A1,MIN(IF(ISERROR(1*(MID(A1,ROW(INDIRECT("A1:A"&LEN(A1))),1))),255,ROW(INDIRECT("A1:A"&LEN(A1))))),99) entered as an array
=MID(A1,MIN(IF(ISERROR(1*(MID(A1,ROW(INDIRECT("A1:A"&LEN(A1))),1))),255,ROW(INDIRECT("A1:A"&LEN(A1))))),99) entered as an array
S SteveW Feb 7, 2007 #9 Nice to see the minimilist method is the only solution My answer to the original is Why, what's wrong with * (-1) ? Steve
Nice to see the minimilist method is the only solution My answer to the original is Why, what's wrong with * (-1) ? Steve
A Alan Feb 8, 2007 #10 .... what's wrong with * (-1) ? ABS(A1) or SQRT(A1*A1) will generate a positive result whether the origininal number in A1 is +ve or -ve. *(-1) only returns a +ve result if the value in A1 is -ve. Regards, Alan
.... what's wrong with * (-1) ? ABS(A1) or SQRT(A1*A1) will generate a positive result whether the origininal number in A1 is +ve or -ve. *(-1) only returns a +ve result if the value in A1 is -ve. Regards, Alan