cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BPC 10.0 NW script logic for round up

Former Member
0 Likes
1,303

Our headcount numbers could be 0.7, 2.3, -0.2 etc. We would like to round up the numbers to get the seat count. In the above examples it should be 1, 3, -1. Wondering what is the script logic to get round up function.

*XDIM_MEMBERSET HC_ACCOUNT = HEADCOUNT_SAW

*WHEN HC_ACCOUNT
*IS HEADCOUNT_SAW
*REC(EXPRESSION = %VALUE%,HC_ACCOUNT = "SEATCOUNT_SAW")
*ENDWHEN

Accepted Solutions (1)

Accepted Solutions (1)

former_member186338
Active Contributor
0 Likes

For your particular case the following can be used:

*REC(EXPRESSION=(%VALUE%>0) ? Math.ceil(%VALUE%) : Math.floor(%VALUE%),HC_ACCOUNT = "SEATCOUNT_SAW")

Former Member
0 Likes

That worked. Thanks Vadim.

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Likes