Hi @Elie_Tondreau , check this example for make a filter with dplyr:
library(dplyr)
onlineta_city_hotels %>%
select(hotel , market_segment) %>%
filter(hotel == "City Hotel" & market_segment == "Online TA")
The help could be better if you put a reproducible example of data: