If you have addressed the switch with 192.168.23.1/255.255.252.0., this means you are using the subnet:
192.168.20.0/22.
This comprises the IP addresses:
192.168.20.1-->192.168.23.254
If you want a new VLAN, you need a different subnet to put on it.
The IP address: 192.168.23.133/255.255.255.240
is an address contained within the subnet you have already established, so you can't configure this as a separate subnet on your switch, using a different VLAN.
(Hosts in your original VLAN, when trying to communicate with 192.168.23.133 compare that address with their own IP address/subnet mask, see that it is an address within their own subnet, and try to find it using an ARP broadcast. The host with 192.168.23.133 on it is in a different broadcast segment, so it doesn't see the ARP request, so the host trying to find it gets no response, so you have no connectivity).
-------
If I understand what you are saying, then what you really want is to break up the 192.168.20.0/22 subnet into smaller components.
If you want 2 VLANs, you can use:
VLAN1 - 192.168.20.0/23 (192.168.20.1-->192.168.21.254)
VLAN2 - 192.168.22.0/23 (192.168.22.1-->192.168.23.254)
If you want 4 VLANs, you would use:
VLAN1 - 192.168.20.0/24 (192.168.20.1-->192.168.20.254)
VLAN2 - 192.168.21.0/24 (192.168.21.1-->192.168.21.254)
VLAN3 - 192.168.22.0/24 (192.168.22.1-->192.168.22.254)
VLAN4 - 192.168.23.0/24 (192.168.23.1-->192.168.23.254)
If you want 8 VLANs, you would use:
VLAN1 - 192.168.20.0/25 (192.168.20.1-->192.168.20.126)
VLAN2 - 192.168.20.128/25 (192.168.20.129-->192.168.20.254)
VLAN3 - 192.168.21.0/25 (192.168.21.1-->192.168.21.126)
VLAN4 - 192.168.21.128/25 (192.168.21.129-->192.168.21.254)
VLAN5 - 192.168.22.0/25 (192.168.22.1-->192.168.22.126)
VLAN6 - 192.168.22.128/25 (192.168.22.129-->192.168.22.254)
VLAN7 - 192.168.23.0/25 (192.168.23.1-->192.168.23.126)
VLAN8 - 192.168.23.128/25 (192.168.23.129-->192.168.23.254)
If you want 16 VLANs, you would use:
VLAN1 - 192.168.20.0/26 (192.168.20.1-->192.168.20.62)
VLAN2 - 192.168.20.64/26 (192.168.20.65-->192.168.20.126)
VLAN3 - 192.168.20.128/26 (192.168.20.129-->192.168.20.190)
VLAN4 - 192.168.20.192/26 (192.168.20.193-->192.168.20.254)
VLAN5 - 192.168.21.0/26 (192.168.21.1-->192.168.21.62)
etc...