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.
The 2025 SAS Hackathon Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.