forgive me if this is a thick question:
I have a table of training completions e.g.
User | Training Course | Status |
---|---|---|
1 | Course 1 | Complete |
1 | Course 1 | Complete |
1 | Course 1 | Incomplete |
1 | Course 2 | Complete |
1 | Course 3 | Incomplete |
My source data includes many duplications. What I want to be left with is one status per training course. If there is both a 'complete' and 'incomplete' for the same course, I would like to remove any instance of 'incomplete' e.g.
User | Training Course | Status |
---|---|---|
1 | Course 1 | Complete |
1 | Course 2 | Complete |
1 | Course 3 | Incomplete |
Hope I've explained that well enough. I'd be most grateful of any suggestions.
I've tried various formulae I've found online, plus an onerous workfow of removing duplicates and filtering.