POSTROUTING and NAT in 2.9.6

I read our Mikrotik Forum and can’t find something like this:

iptables -t nat -A POSTROUTING -s 192.168.0.2/32 -o eth0 -j SNAT --to-source=212..xxx.xxx.xx2

my target is to masqerade all (iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth0 -j SNAT --to-source=212.xxx.xxx.xx1) and only the one IP-192.168.0.2 be masquerade to second real public IP-212..xxx.xxx.xx2. The two real IP-s are form the same network 212..xxx.xxx.0/24 and at the same ethernet “ether1” the default GW is the same 212..xxx.xxx.1.

Is it possible to do this with MT?
thanks a lot of advance

Sure. Just add two src-nat rules, one for the /32 address and one for the /24 addresses. Then, make sure the one for the /32 address comes before the one for the /24 addresses. The order of the nat rules is important.