Hi!
I'm trying to create a table with data. where the first column must be numerical(integer) and second column must be float number.
The following code does it except first 9 rows where int number is less then 10.
The code:
DATA Lapse_Multipliers;
  input Years 1-2 Lapse_Multipliers 3-6;
  DATALINES;
1	1
2	1
3	1
4	1
5	1
6	0.9
7	0.8
8	0.7
9	0.5
10	1
11	1
12	1
13	1
14	1
15	1
16	0.9
17	0.8
18	0.7
19	0.5
20	1
;
run;
It returns:
.	1
.	1
.	1
.	1
.	1
.	0.9
.	0.8
.	0.7
.	0.5
10	1
11	1
12	1
13	1
14	1
15	1
16	0.9
17	0.8
18	0.7
19	0.5
20	1
What am I missing?