I will try to explain this a clearly as I can. Hopefully someone can help me in my task. I have a "rollup" table that contains individuals, each with a low field and a high field, which define the range of employee numbers that report to each of the individuals. I have another table with all of the employees of the organization, each with a unique code, which falls within the various high/low ranges defined in the first table. My problem is this, I am working from mainframe data and the SAS programmers have used alphanumeric combinations for the rollup. An example is as follows:
from table 1:
Name Low High
John Smith 146CAA000000 1460AA0000000
An employee with ID 146DAA000000 would fall in this range if it calculated correctly.
The problem is that the SAS mainframe environment evaluates alpha before numeric, however it appears access is evaluating numeric before alpha which makes the above range not make much sense. Is there a setting or switch I can manipulate to change that? Any suggestions?
from table 1:
Name Low High
John Smith 146CAA000000 1460AA0000000
An employee with ID 146DAA000000 would fall in this range if it calculated correctly.
The problem is that the SAS mainframe environment evaluates alpha before numeric, however it appears access is evaluating numeric before alpha which makes the above range not make much sense. Is there a setting or switch I can manipulate to change that? Any suggestions?