My Question might be long but it just a detailed explanation so that nothing is left for assumption:
Here a rough sketch of my network:

Router A routing table:
[admin@MikroTik] > /ip route print
Flags: X - disabled, A - active, D - dynamic,
C - connect, S - static, r - rip, b - bgp, o - ospf
DST-ADDRESS PREF-SRC G GATEWAY DIS INTERFACE
0 ADC 41.72.204.160/30 41.72.204.162 Mumbu VLAN
1 ADC 172.168.150.0/30 172.168.150.2 Tuseme VLAN
2 ADC 192.168.123.0/24 192.168.123.253 LAN
3 ADC 192.168.150.0/24 192.168.150.1 LAN
4 A S 0.0.0.0/0 r 41.72.204.161 Mumbu VLAN
[admin@MikroTik] >
Router A NAT:
[admin@MikroTik] > /ip firewall nat print
Flags: X - disabled, I - invalid, D - dynamic
0 chain=srcnat src-address=192.168.123.0/24 action=src-nat
to-addresses=41.72.204.162 to-ports=0-65535
[admin@MikroTik] >
Router B routing table:
[admin@MikroTik] > /ip route print
Flags: X - disabled, A - active, D - dynamic,
C - connect, S - static, r - rip, b - bgp, o - ospf
DST-ADDRESS PREF-SRC G GATEWAY DIS INTERFACE
0 ADC 10.5.7.0/24 10.5.7.1 ether2-lan
1 ADC 41.72.215.44/30 41.72.215.46 Office VLAN
2 ADC 172.168.150.0/30 172.168.150.1 Mumbu VLAN
3 ADC 192.168.50.0/27 192.168.50.1 ether1-wan
4 A S 192.168.150.0/24 r 172.168.150.2 Mumbu VLAN
5 A S 0.0.0.0/0 r 41.72.215.45 Office VLAN
[admin@MikroTik] >
Router B NAT:
[admin@MikroTik] > /ip firewall nat print
Flags: X - disabled, I - invalid, D - dynamic
0 ;;; masquerade hotspot network
chain=srcnat src-address=10.5.7.0/24 action=masquerade
1 ;;; dst nat ssh to linux
chain=dstnat dst-address=41.72.215.46 protocol=tcp dst-port=22
action=dst-nat to-addresses=192.168.50.21 to-ports=22
2 ;;; dst nat http to linux
chain=dstnat dst-address=41.72.215.46 protocol=tcp dst-port=80
action=dst-nat to-addresses=192.168.50.21 to-ports=80
3 ;;; Office Network
chain=srcnat src-address=192.168.50.0/27 action=src-nat
to-addresses=41.72.215.46 to-ports=0-65535
4 chain=srcnat src-address=192.168.150.0/24
src-address-list=192.168.150.0/24 action=src-nat
to-addresses=41.72.215.46 to-ports=0-65535
[admin@MikroTik] >
On Router A, network 192.168.123.0/24 works ok. The hotspot and LAN 192.168.50.0/24 on Router B work fine as well. My problem arises when i want network 192.168.150.0/24 on Router A to pass through VLAN 1431 to Router B and then be routed out through interface 41.72.215.46. From network 192.168.150.0/24 I can get to this interface, but I can't get to its gateway 41.72.215.45. Am not sure if I've given enough information but if not please inform me. If its adequate, please assist me
. Thank you