Using Crystal Reports 8.5 and Oracle 9i.....
I have a report that groups (and does a sum total) tests and then the results of those test. Of of the groups ("Blood Alcohol %WT/VL") needs to have the results further summarized. The field ({ARRESULT.Result}) is a text field that contains data such as:
0.058, 0.083%, 0.117, 0.234, Not Analyzed, Not Detected, Positive, etc.
What I need to do is to test for a number (0.058 or 0.083%) and group the results into <= 0.100% or >0.100%. If the field is not a number (does not begin with "0.") it would be reported as saved ("Not Analyzed", "Not Detected", etc.).
Can someone get me started by an example of testing {ARRESULT.Result} for "0." and, if true, converting the data to a number?
I have a report that groups (and does a sum total) tests and then the results of those test. Of of the groups ("Blood Alcohol %WT/VL") needs to have the results further summarized. The field ({ARRESULT.Result}) is a text field that contains data such as:
0.058, 0.083%, 0.117, 0.234, Not Analyzed, Not Detected, Positive, etc.
What I need to do is to test for a number (0.058 or 0.083%) and group the results into <= 0.100% or >0.100%. If the field is not a number (does not begin with "0.") it would be reported as saved ("Not Analyzed", "Not Detected", etc.).
Can someone get me started by an example of testing {ARRESULT.Result} for "0." and, if true, converting the data to a number?