Oct 3, 2002 #1 saramaia Programmer Aug 5, 2002 61 PT Hi! I have a field in my database table that is a varchar2 but will always contain numbers. How can i sum this value, considering it´s type is varchar2??? Thank you Sara
Hi! I have a field in my database table that is a varchar2 but will always contain numbers. How can i sum this value, considering it´s type is varchar2??? Thank you Sara
Oct 3, 2002 #2 goranm Programmer Dec 18, 2001 247 SE Hi ! Maybe this can help: Create a formula like this: if IsNumeric({YourField}) then val({YourField}) else 0 Place the formula in your Detail section and then you can summarize it. /Goran Upvote 0 Downvote
Hi ! Maybe this can help: Create a formula like this: if IsNumeric({YourField}) then val({YourField}) else 0 Place the formula in your Detail section and then you can summarize it. /Goran