Creating a title for this was tricky. So I have a spreadsheet in Google Sheets where I have three sets of data that I need to add together but there are times one or two of the cells might be blank. Basically, I am trying to create a Score for a call center rep where a call is worth 8 points, chats are worth 5 and a ticket is worth 7 points.
My sheet will pull how many calls, chats, ticket the rep did and then I need to add the point value and then add the three sets of data together to get the overall Score.
Calls are in B4, Chats in C4 and Tickets in D4 with the total cell in E4. =sum((B4*8)+(C4*5)+(D4*7)) works if all cells have data in it, there is a formula in each cell pulling the data from another tab with an iferror formula to show a blank cell if no data was found. How do I get the formula to treat cells that are blank as a 0 so that I will get a result and not an error?
My sheet will pull how many calls, chats, ticket the rep did and then I need to add the point value and then add the three sets of data together to get the overall Score.
Calls are in B4, Chats in C4 and Tickets in D4 with the total cell in E4. =sum((B4*8)+(C4*5)+(D4*7)) works if all cells have data in it, there is a formula in each cell pulling the data from another tab with an iferror formula to show a blank cell if no data was found. How do I get the formula to treat cells that are blank as a 0 so that I will get a result and not an error?