I have a tree with lots of medieval, and even mythical, figures, in which there are a lot of people who are siblings with unknown parents. This means that they are connected to a parent family, in which both parents are empty.
When I select the families view, I can create a filter for all sorts of things, including names and IDs of parents, but I see no way to create one for families that have no defined parents.
I have several (real) people that I know the sibling but not the parents.
I tag the Family with the apt named âRelated Siblings (unknown parents)â tag. I make the tag Red so in the family list I know why both parents are blank.
Note: Two of these are endline ancestors so when I do a search for relatives of the branch, the sibling (and their branch) is not included without adding the siblings of ancestors before bringing the lines forward by finding the descendants.
Yes, thatâs a smart one. I tried searching for empty IDs wirh the ^$ regexp, but that didnât help, and the inversion that you use here, of a positive match on any ID, may probably solve the problem here too.
Searching for end of line persons wonât help here, because I only want to select the families that have no parents, and 2 or more children.
OK, I thought that it was smart, because you reversed my thinking, where I tried to find empty IDs with the ^$ regexp.
I can make your example a bit simpler though, by replacing the expressions with a single dot. That works, because that single dot matches with any character, and the regexp search automatically searches by substring, so that that single dot matches any ID, except empty ones. Reversing that does the same as what I expected from the ^$ that didnât work.