I have a Database field whose datatype is String in Crystal Reports. How can I convert it to a number value?
标签:
crystal-reports
相关问题
- Crystal Report SP26 SetDataSource() Method failed
- Crystal Report in .NET Framework 4.0
- right to left string in crystal report
- Loading Crystal Report from embedded resource
- Suppress Nonadjacent Duplicates in Report
相关文章
- What is the best way to cleanup the resources used
- How to pass a list of values into a crystal report
- Crystal Report Sub Report Page Break
- Issue related to vertical line in Crystal Reports
- Dynamically change database type, source etc in Cr
- Converting total time in integer into HH:MM format
- Crystal Report: How to evaluate multiple IF statem
- How to resolve Crystal Report version conflict and
Within Crystal, you can do it by creating a formula that uses the
ToNumber
function. It might be a good idea to code for the possibility that the field might include non-numeric data - like so:Alternatively, you might find it easier to convert the field's datatype within the query used in the report.