Hi @7opRenauN ,
Not quite sure whether the round() function is working as an expression in FSM. Rather than exhausting the user_def fields, if your intension is only to display the rounded value on the screen, you could write a custom sql view with sql “ceiling()” / “round()” function so that you can get the desired value in the expected ceiling format according to your example (would recommend use ceiling() as per your results shown in the question). Make sure to get the task_id and the rounded_values as the result set in your sql view.
Then simply create custom metadata for that view (make the fields as read only) in FSM and you can easily link that view via UI designer with the relationship editor (task.task_id eq custom_view.task_id). Once this is done, drag and drop the custom view filed for the rounded value in to your screen. Refresh your cache and test this.
Hope this would help if your intension is only to display the rounded value.