You should show examples of the actual file that was read and ideally the code used to read the data.
Also you should show what you expect the results to look like.
If you want to display numeric values as currency then the display format DOLLAR should be used.
Example;
data example;
input x;
put x Dollar16.2;
datalines;
123.45
0.57
123456789.89
;
The example code provided by @PeterClemmensen reads values as character.
SAS Innovate 2025: Register Now
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9. Sign up by Dec. 31 to get the 2024 rate of just $495. Register now!