Can I use ROUND function instead of CEIL. I believe CEIL is causing the problem here. I do not know what parameter to use in ROUND function in this case.
| Sale (Data Type-Double) | Formula | Sales OutPut (DataType -VWString) | Output Required | Rounding UP or Down |
| 0.954545455 | ToString(CEIL(([Sale])*100)) + "%" | 96% | 95% | If the 5 digit after decimal is < 5 then round down to the t number integer number. In this case it should be 95% |
| 0.986363636 | ToString(CEIL(([Sale])*100)) + "%" | 99% | 99% | If the 5 digit after decimal is >= 5 then round up to the number integer number. In this case it should be 99% |