I need some help resolving an issue. I am joining two tables by a field called 'policy'. policy customer 000718124 1001 000714946 1002 000910934 1003 000901672 1004 In table A the policy field is Type: Character and Length: 9 and in the table B it is Type: Character and Length: 20. Since the field has 9 characters I changed the length of the field in table B in proc sql like below. data test1; length policy $9; set B; run; So now, the field policy in test1 table has length = 9. So, when I join tables A and test1, I do not get any data back. So, I changed the length of policy field in table A also, even though the character length is 9. data test2; length policy $9; set A; run; Again I tried join test1 and test2 but I am still not getting any data back. Both tables have the same values for policy field so I know there is data but I do not get anything back. Thank you in advance
... View more