Round a Column's Values
Rounds numeric values in a table column to a specified number of decimal places.
Overview
This procedure rounds the values in a specified column of a table to a given number of decimal digits. It automatically handles comma-separated values and converts non-numeric columns to numeric format before rounding. You can specify the number of decimal places and provide custom handling for missing values.
Syntax
Below is a line-by-line overview of the automation syntax. Expand each line to learn more.
Examples
1. Round Column to Whole Numbers
Rounds decimal values in the "Age" column to whole numbers (no decimal places).
round the table's "Age" column
2. Round Column to Two Decimal Places
Rounds values in the "Tenure" column to exactly 2 decimal places.
round the table's "Tenure" column
the decimal digits is 2
3. Round Column with Blank Value Handling
Rounds a column while replacing any missing values with 0 before processing.
round the table's "Price" column
the blank value is 0.00
Last updated
Was this helpful?