If I want to extract rows from a single data frame based on another one I use this:
data<- dat[dat$ABC %in% cod$ABC, ]
Now I have a list of data frames and a data frame. How can I extract rows from every data frame on the list based on the other data frame?