Hi I am new to synchro Script Whether it is possible to Combine 2 user field value into 1 string For example user field "Total" contain 100 user field "Completed" contain 30 user field "Result" show 30 / 100 by combining "completed" and "total" as 1 string So I wrote this formula to get the result "30 / 100" TASK(SELECTED) ASSIGN_UF("Result", STRING, UFV("Completed") + " / " + UFV(Total)) However, it does not work, did I missing something?
↧