Hi Bruno,
In the last line, after 25, you need to use div instead of / .
You can write the expression as either:
75 + ($Temperature -24 ) * (25 div 4)
or
75 + ($Temperature - 24 ) * (25 : 4)
Both functions are valid in Mendix and will be accepted for arithmetic expressions involving division.
See the documentation here: https://docs.mendix.com/refguide/arithmetic-expressions/#division
You should use div of : instead of /
Regards,
Ronald
Hello Bruno Lopes,
Try this!
Hi Bruno,
After 25 at the last line you have to use div instead of /.
75 + ($Temperature -24 ) * (25 div 4)