Thanks, this is indeed working.
Due to auditing rules, we need to have for certain types of users a minimal length of 20 characters. This is not applicable for ALL users in our group. Therefor I need to filter out the users with TAG="Technical" and a password lenght of less then 20 character. With the regular expression ^.{19,25}$ on "passwords" I can filter out the accounts with a lower amount of character, but then I see to much accounts. And I doubt if I can use the regular expression to find multiple conditions on separate...