Dear all, while learning I noticed that there is a need to write in a certain way to tell UiPath to programme the robot to do what we need it to do. Is there a uiPath manual of various commands documenting HOW to type certain commands properly/clearly?
For example, if we have a data table and we want 1 cell to multiply with another cell to derive a total value in 3rd cell. Like total = qty * price,
we would need to type in data-table something like
item.row(“total”) = item.row(“qty”)*item.row(“price”)
If i had not seen Anders Jensen’s youtube video instructing me how to type this, I would never have guessed to write it in this way, with the periods “.” and the brackets () etc.
Yet alone on the need to convert the numbers to decimal points or “doubles” in the local (nerd ~ no offence) language of uipath.
item.row(“total”) = convert.todouble(item.row(“qty”))*convert.todouble(item.row(“price”))
Is there any nice cheat sheet or chapter teaching us how the language of issuing these commands?
Thank you!