wlan send to isp2 not to isp1

I want to redirect wlan1 to isp2 wlan1 has separate ip pool with own dhcp-server
How should I set that?
tnx for reply
interfaces.jpg
firewall-nat.jpg
addresses.jpg

Hello
if ether2 is not member of bridge then use

/ip firewall mangle add chain=prerouting src-address=192.168.101.0/24 action=mark-routing new-routing-mark=wlanUsers
/ip route add routing-mark=wlanUsers gateway=ether2-isp2
/ip firewall nat add chain=srcnat src-address=192.168.101.0/24 out-interface=ether2-isp2 action=masquerade

if it is member of a bridge replace ether2 with your bridge name in commands
be careful if ether2 is a member of a bridge set ip address to bridge and if not set ip address to ether2

Good luck