I'm needing some help to determine if a 'title' has ever been 'registered' and if so, update a separate column with the earliest date in for that title with text - "InsinuatedRegistered".
I've tried a bunch of things but don't know how to select only the earliest item to add the text to.
try:
listin %>% group_by(title, Action_updated=="Registration") %>% summarise(Count = n()) %>% ungroup() %>% mutate(Action_updated = "InsinuatedRegistered")