It sounds like you want to have a table that only shows where A & B exist in another table that only shows where A & C exist.
If that is the case, here’s one approach. Use an expression to generate a column of ones, for rows where AB or AC are both there. You could use an if statement for this, but a simple math expression can also do it. When there are missing values by default, nothing gets returned.
Once you have that, you can sort with the column of ones.
Note that we placed the filtered date_time column and its own group. Then you can use the same name “date_time”.
This makes creating the subsequent map columns easy because all you need to do is right-click on the new filtered date_time column, the program will search for other columns with the same name, and you will have the option to map to the original data.
Does this help?