Section courante

A propos

Section administrative du site

ROUND

Arrondir
SAS Tronquer

Syntaxe

ROUND(argument<,RoundingUnit>)

Paramètres

Nom Description
argument Ce paramètre permet d'indiquer le nombre à arrondir.
RoundingUnit Ce paramètre permet d'indiquer l'unité d'arrondissement à retourner.

Description

Cette fonction arrondie une valeur avec une unité d'arrondissement spécifié.

Remarques

Exemple

Voici un exemple de l'utilisation de cette fonction :

  1. data roundsamples;          
  2.  x = round(1);
  3.  put 'Round(1)=' x;
  4.  x = round(1.1,1.1);
  5.  put 'Round(1.1,1.1)=' x;
  6.  x = round(1.7,1.7);
  7.  put 'Round(1.7,1.7)=' x;
  8.  x = round(-1,1.0);
  9.  put 'Round(-1,1.0)=' x;
  10.  x = round(-1.1,1.0);
  11.  put 'Round(-1.1,1.0)=' x;
  12.  x = round(-1.7,1.0);
  13.  put 'Round(-1.7,1.0)=' x;
  14.  x = round(30.2);
  15.  put 'Round(30.2)=' x;
  16.  x = round(-35.4);
  17.  put 'Round(-35.4)=' x;
  18.  x = round(-345.6789,345.67);
  19.  put 'Round(-345.6789,2)=' x;
  20. run;

on obtiendra le résultat suivant :

Round(1)=1
Round(1.1,1.1)=1.1
Round(1.7,1.7)=1.7
Round(-1,1.0)=-1
Round(-1.1,1.0)=-1
Round(-1.7,1.0)=-2
Round(30.2)=30
Round(-35.4)=-35
Round(-345.6789,2)=-345.67


Dernière mise à jour : Samedi, le 6 août 2016