I'm not sure what you mean about the number range search. Can you give me the range you are entering and the exact results you are getting?
As for stripping out spaces and currency symbols, you would add some code to sub add_record.
To strip out spaces, use
Currency symbols can be tricky. Would it just be dollar signs or would it be other symbols, too? If it's just dollar signs, use
------------------
JPD
As for stripping out spaces and currency symbols, you would add some code to sub add_record.
To strip out spaces, use
Code:
$in{'fieldname'} =~ s/ //g;Currency symbols can be tricky. Would it just be dollar signs or would it be other symbols, too? If it's just dollar signs, use
Code:
$in{'fieldname'} =~ s/\$//g;------------------
JPD