Glad you got it working like you want.
Some other tips to rules include...
- Rules are read in order (from the top down) and once a variable is applied or denied, no following rule will bring it back into the picture. This is why all exception must be applied before any rules that would eliminate them.
- Variables with spaces need to be in quotes (").
- Rules use regex (regular expression) which has its quirks, one of which requires some special characters to be escaped by a backslash (\).
- You can use one rule to define multiple items by using the pipe (|). Example, "exception Name equals 1942|1943|1944"
If you follow these tips and run into issues, chances are your rule has an issue with regex. A little light reading on regex will go a long way in these cases.