BookmarkSubscribeRSS Feed
Belle
Obsidian | Level 7

Hi Member,

How to display decimal values and integer values in the same column? For example, I want my column looks like:

  Column

     1.62

     2

     3

     1.59

      .

      .

      .

Now the result I got is:

  Column

     1.20

     2.00

     3.00

     1.17

Here is the program:

data test;

   input A B;

   C = round(A/B, .01);

   cards;

   6  5

   8  4

   9  3

   7  6

   ;

run;

proc print data = test; run;

Is there a way that I don't need to show decimals when the number is integer (like 2), and keep the decimals when it is not integer (like 1.20).

Thank you for your help.

2 REPLIES 2

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1473 views
  • 3 likes
  • 2 in conversation