I'm trying to create an excel spreadsheet that contains a row for each employee of a company, where each column references the hours of work they do each week. Initially, the cells are filled with expected hours/week filled from another sheet, but then they are replaced manually with the amount of hours people actually work every week. I want to be able to sum the amount of hours people have actually worked i.e. sum the cells of each row which are formulas.
In the past I've just been manually summing the cells each week.
The formula I think should work is:
=SUMIF(B5:M5, "!ISFORMULA(B5:M5)")
Where columns B:M contain the hours worked each week.
At the moment, this formula returns 0, no matter how many cells with formulas there are in the row.
EDIT See link for sample data: Sample Data
sum the cells which has formulas
, but as per the title of the question you want tosum the cells which doesn't have any formulas
. Kindly correct it so that in the future if any other person who faces the same problem can search and get the proper answer. – Imtiaz Ahmed