ignore text in formula
On Dec 29, 4:35*pm, jatman wrote:
i am using the following formula
=J17*H17
the problem is J17 is imported from another file, and that always contains a
number value along with some text value (ex. 5 CS). *when the formula is
calcuated, it returns #VALUE!
can the formula be written so that it looks at the number value only and
ignores the text?
thank you,
jat
If J17 is alway number space text then try
=MID(J17,1,FIND(" ",J17&" ")-1)*H17
|