I need help with creating a multi-worksheet formula

Penstrokes

New Member
Joined
Jan 30, 2005
Messages
8
If I have a text name in C3 and the commission amount paid in c4, can I recall that amount for that text name in a different spreadsheet in the same workbook?

This name and $ amounts will be listed several times within one spreadsheet, and I need to create something that will recall those amounts each month. Something that I don't have to manually do each month.

Can that be done on Excel or do I need to learn access?

Thanks for any suggestions! I've totaled the monthly commission amounts for all clients and vendors, now my client wants to see how much each vendor pays each month (when they might sell to 2 or 20 different accounts). :oops:

Donna
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Welcome to the Board!

It'll help if you post a shot of your data sheet and your summary sheet with expected results. (You can do that with Colo's HTML Maker, you'll find the link at the bottom of the page).

In the meantime, here's a possible aproach using SUMIF:
Book1
ABCD
1ClientCommissionPaid
2XYZCorp$25.00
3ABCCorp$75.00
4XYZCorp$25.00
5ABCCorp$75.00
6XYZCorp$25.00
7ABCCorp$75.00
8XYZCorp$25.00
9ABCCorp$75.00
10
11ClientCommissionPaid
12XYZCorp$100.00
13ABCCorp$300.00
Sheet1


Hope that helps,

Smitty
 
Upvote 0
Thanks! I downloaded the Colo HTML maker, but alas, now I don't know how to attach my data sheet. The workbook is huge and I wouldn't want to send the whole thing.

But in the mean time (while I try to figure that out) I'll look at the idea you sent and hopefully that will jog the right brain cells so that I can make something work. :biggrin:

Thanks again! [/code]
 
Upvote 0
I looked at the formula you gave me and that gives me a start. By looking at that, I know this is what I need to do:

If all of the cells between c4:c129 have a vendor name listed, then I need the values in the cells d4:d129 totalled.

So if c4:c129=vendorA, then total all amounts for that vendor in d4:d129.

This is what I did after you gave me the formula to start:

=sum(jimtipton!$c$4:$c$129,$d$4:$d$129) But there was no name of what I'm looking for and the total ended up being 0 (zero), so I tried to insert URC after the 129, but I don't know if that needs quote, parenthesis, or what. Maybe I'm totally off.... but maybe I'm close.

Thanks!
 
Upvote 0
See the HTML Maker FAQ

You don't need to post your entire sheet, just a snapshot.

And your SUM formula contains too many conditions. I used SUMIF, so

=SUMIF($c$4:$c$129,Name to check,$d$4:$d$129)

Smitty
 
Upvote 0
Yes, use quotes around text characters. Ensure that they match exactly (i.e. no leading/trailing spaces, punctuation, case sensitivity, etc) or it will be problematic for you.


pennysaver said:
.. And your SUM formula contains too many conditions. ..
You can have up to 30 arguments. In this case, it's just checking two ranges. One on the sheet the formula is on, and the other on the indicated sheet.

(y)
 
Upvote 0
OOPS!

Sorry Zack, I was looking at it as if the OP was trying to use SUM to work like SUMIF :oops:

Smitty
 
Upvote 0
It's taken me a while, but if I did it right, there should be a snapshot of my worksheet. I need to total the amounts associated with each vendor name into a totally different worksheet that will add up each time the vendor name is used.
JimTipton_trial.xls
CDEF
4URC$10.00
5
6TOTAL$10.00 $0.00
7SIM2$150.50
8Da-Lite$100.00
9URC$10.00
10KEF$125.50
11
12TOTAL$386.00 $0.00
13Sennheiser$126.56
14Oxmoor$25.65
15
16TOTAL$152.21 $0.00
17Sennheiser$322.50
JimTipton
 
Upvote 0
Thank you so much! Do I need to name the vendor name (URC, Sim2, etc)? The snapshot was small, but each vendor is named several times. Your example referred to the cell location A1. Will that work instead of naming the actual name?

I really apreciate the help! I've always loved Excel but I know there are soooo many things I still have no clue about. I appreciate your help!

Donna
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,404
Members
448,893
Latest member
AtariBaby

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