New to Excel, please help me!

stacey_milesg

New Member
Joined
Mar 18, 2019
Messages
14
Hello,

I am very new to excel and am looking for some help! I’d really appreciate if someone can help me with a formula for one of my cells.

I have a cash book, in column B it has details of the person paying the money in. This money is usually for one client but sometimes it can be for more that one so I have to split the amounts which I do so I’m column E, eg B9 will say ‘John Smith’ and then E9 will have a figure and E10 will have a figure but I leave B10 as a blank field. I need a formula so that F9 will add E9&E10 only when B10 is blank. If it is not blank then it should only pull E9. However it could be that one receipt could be for 5 clients and so I need the formula to add all of those and then work down for the whole spreadsheet.

I’m sorry if this sounds very confusing! It’s hard for me to explain!

Thank you in advance for your help!!
 
I can do this, but I am concerned that if someone was to pick this task up in my absence they may not and then wouldn’t get the account to balance.

Could I use any other function? As all I need is for F9 to pull the value of E9 or add this with E10 based on the B10 being blank.

Thank you for your help
 
Upvote 0

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi Alan, no unfortunately not. We usually have over 500 rows with dates but can have more than one payment in on a particular date.
 
Upvote 0
instead of changing the data in Col B, this make use of an extra column that you can put it elsewhere on the sheet.
Copy F9 & G9 down


Book1
ABCDEFG
8
9John Smith1002251
10500
11250
12500
1323114 FENCHURCH REM E2910000101001
141000
15A N Other2003251
161250
17An Other1501501
18fenchurch 231151001501
19500
20A Other10101
210
220
230
240
250
260
270
2823114 FENCHURCH REM E2912,643.3012643.32
290
300
84
Cell Formulas
RangeFormula
F9=IF(ISBLANK(B9),"",SUMPRODUCT(--(LOOKUP(ROW(B$9:B$30),ROW(B$9:B$30)/(B$9:B$30>0),B$9:B$30&"-"&$G$9:$G$30)=B9&"-"&G9),$E$9:$E$30))
G9=COUNTIF($B$9:B9,B9)
 
Upvote 0
Fantastic, that’s appears to have worked. Thank you ever so much!

this is a better solution as it doesn't need the extra column


Book1
ABCDEF
8
9John Smith100150
1050
1123114 FENCHURCH REM E291000010100
12100
13A N Other200325
14125
15An Other150150
16fenchurch 23115100150
1750
18A Other1010
1923114 FENCHURCH REM E2912,643.3012643.3
84
Cell Formulas
RangeFormula
F9=IF(ISBLANK(B9),"",SUMPRODUCT(--(LOOKUP(ROW(B$9:B$19),ROW(B$9:B$19)/(B$9:B$19>0),B$9:B$19&"-"&ROW(B$9:B$19))=B9&"-"&ROW(B9)),$E$9:$E$19))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,986
Messages
6,122,611
Members
449,090
Latest member
vivek chauhan

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