I am extracting part of a string using Mid() and I need to convert this to number format. Any ideas?
J Jeff Klein Nov 1, 2007 #1 I am extracting part of a string using Mid() and I need to convert this to number format. Any ideas?
T T. Valko Nov 1, 2007 #2 Try one of these to convert the result of the MID function to a numeric number. =--MID(........) =MID(........)+0
Try one of these to convert the result of the MID function to a numeric number. =--MID(........) =MID(........)+0
N Niek Otten Nov 1, 2007 #3 Hi Jeff, =VALUE(YourMidFormula) -- Kind regards, Niek Otten Microsoft MVP - Excel |I am extracting part of a string using Mid() and I need to convert this to | number format. Any ideas? | |
Hi Jeff, =VALUE(YourMidFormula) -- Kind regards, Niek Otten Microsoft MVP - Excel |I am extracting part of a string using Mid() and I need to convert this to | number format. Any ideas? | |
P Peo Sjoblom Nov 1, 2007 #4 =--MID(...) will work as long as you parse out a number with the MID function -- Regards, Peo Sjoblom
=--MID(...) will work as long as you parse out a number with the MID function -- Regards, Peo Sjoblom
P Pete_UK Nov 1, 2007 #5 Just multiply it by 1 (or add zero) as part of your formula: =1*MID(A1,3,2) Hope this helps. Pete