Could you describe the class in one short sentence? A class with high cohesion has a one-line description ("manages an employee's payroll info"). If yours needs the word "and" three times, cohesion is leaking.
If you removed a method, would the class still make sense? If the answer feels like "yes, easily," that method probably doesn't belong here.
Do all the fields get used by all the methods? Total overlap isn't required, but if half the fields are completely unused by half the methods, you might be looking at two classes pretending to be one.