The PERCENTFORMAT parameter is used in ProBuilder to format screener results as percentages. This is useful when dealing with ratios, indicators, or percentage-based values.
number = 20221202
SCREENER(number AS "Formatted Percentage" PERCENTFORMAT)
number holds a numeric value (20221202).SCREENER function is used to display values.PERCENTFORMAT instruction converts the value into a percentage format.Expected Output: 2,022,120,200.00%
This is useful for displaying percentage-based calculations in a clear and standardized way.