May 11, 2006 #1 101287 MIS Apr 8, 2006 189 US Is there any function or vba code that I could use to change a text field with a currency format to numberic. I have a text field numeric that I need to add to a numeric field and don't know how to do it. Your help will be greatly appreciated. Luis
Is there any function or vba code that I could use to change a text field with a currency format to numberic. I have a text field numeric that I need to add to a numeric field and don't know how to do it. Your help will be greatly appreciated. Luis
May 11, 2006 #2 Remou Technical User Sep 30, 2002 13,030 BE I guess you mean that there is a currency symbol, dollar for example, in the text field. How about: strCurr = "$25.00" curCurr = Val(Mid(strCurr, 2)) Upvote 0 Downvote
I guess you mean that there is a currency symbol, dollar for example, in the text field. How about: strCurr = "$25.00" curCurr = Val(Mid(strCurr, 2))