cancel
Showing results for 
Search instead for 
Did you mean: 

BPC 10.0 NW script logic for round up

former_member212723
Participant
0 Kudos

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 Kudos

For your particular case the following can be used:

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

former_member212723
Participant
0 Kudos

That worked. Thanks Vadim.

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Kudos