Sum of cells with formulas already in them

poptart1108

New Member
Joined
Jun 12, 2017
Messages
14
Hello,

I am trying to add the value of cells together. These cells already have formulas in them (multiplication). Some of the cells have no value because the data has not been entered yet, they just have the formulas for when the cells other cells are populated the formula is already there.

This is a spreadsheet to track commissions. I have a Vlookup formula in column E to pull the right percentage, then in column F i would enter the cost. Column G has a multiplication fomula that multiplies E and F to get the commission. I also have a column (J) that multiplies F by a split percentage if the rep is splitting it with another salesperson. I want to put a total on the sheet, but it returns #N/A when I use the sum function. Any ideas? Should this be a VBA code instead?
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Can you post a small sample of your data ?
It sounds like your LOOKUP function isn't returning a result, and that is carrying through to your sum function.

AND

No, it shouldn't need VBA !!!
 
Upvote 0
Hi there,

The VLookUp definitely returns values (example =VLOOKUP(C2,Sheet2!A1:B18,2,FALSE)

The vlookup codes are in column E. I have about 300 rows prepoulated with formulas so that when the data is entered is can be calculated.

Column A (sales Rep) Column B (Client) Column C ( Product) Column D (product cost) Column E (commission rate aka vlookup) Column F (premium) Column G (Commission in dollars aka cell is column F*cel in column E) Column H (Percentage to sales rep) Column I (Dollar amount to sales rep aka cell in column H* Cell in column G)

like I said I have 300 cells in column E, G and I pre-populated so that when the data is entered the calculations will happen. I need to be able to get an automatic updated sum of what has been entered thus far. I dont want to have to manually do it or redo the formula everytime i enter a new product/sale
 
Upvote 0
Just make sure that the formulas return a zero if it does not have all the data that it needs yet, so you can perform your sum.
If you need help in doing that, please post a formula that is not returning a numeric value when it does not have all the required data.

Note, if you have VLOOKUP formulas returning "#N/A errors because it does not yet have the required data, use IFERROR around it to return zeroes instead, i.e.
Code:
=IFERROR(VLOOKUP(...),0)
 
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,774
Members
452,353
Latest member
strainu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top