Sep 9, 2002 #1 mooneye Technical User Jan 14, 2002 27 IE Is there any quick way of deleting non-numeric data from fields, e.g. I want 12.5 to appear instead of 12.5 Kg. Any help would be greatly appreciated.
Is there any quick way of deleting non-numeric data from fields, e.g. I want 12.5 to appear instead of 12.5 Kg. Any help would be greatly appreciated.
Sep 9, 2002 1 #2 DaleWatson123321 Programmer Jun 12, 2001 1,788 CA Hi Mooneye, If your data is in column A, use the following formula in column B, and copy down for all the rows: =VALUE(LEFT(A1,FIND(" ",A1)-1)) Then of course convert to values, and copy to column A. Hope this works for you. Please advise as to how you make out. Regards, ...Dale Watson dwatson@bsi.gov.mb.ca Upvote 0 Downvote
Hi Mooneye, If your data is in column A, use the following formula in column B, and copy down for all the rows: =VALUE(LEFT(A1,FIND(" ",A1)-1)) Then of course convert to values, and copy to column A. Hope this works for you. Please advise as to how you make out. Regards, ...Dale Watson dwatson@bsi.gov.mb.ca
Sep 9, 2002 #3 onedtent Technical User Aug 16, 2002 460 CA u can also use edit, replace to replace " kg" with nothing (without quotation marks) Upvote 0 Downvote
Sep 9, 2002 Thread starter #4 mooneye Technical User Jan 14, 2002 27 IE Thanks Dale it did the trick. Upvote 0 Downvote