I have the following mathematical operations to use: Add, Divide, Minimum, Minus, Modulo, Multiply and Round.
With these I need to get a number, run it through a combination of these and return 0 if the number is negative or equal to 0 and the number itself if the number is greater than 0.
Is that possible?
EDIT: Minus is Subtract
You really want $\max\{x,0\}$, which can be realized as $\boxed{-\min\{-x,0\}}$.
In your precise language, $\operatorname{Minus}(\operatorname{Min}(\operatorname{Minus}(x),0))$.
(I assume that your "Minus" is unary minus, not "Subtract". If it really is "Subtract", you can produce unary minus by Subtract($0,x$).)