EXCL HELP

rsd007

New Member
Joined
Oct 24, 2022
Messages
27
Office Version
  1. 2019
Platform
  1. Windows
Hello,
I dont have much experience with EXCL. I am trying to do a project where I have to automate the total for a month in E column based on the DATE column B. I dont know how to do a Formula so it can look in Date column and add cash out/in for the month.
I have downloaded XL2BB but for some problem was not allowing to convert so had to do this
 

Attachments

  • HELP-01.png
    HELP-01.png
    114 KB · Views: 6
  • HELP-02.png
    HELP-02.png
    146.2 KB · Views: 6

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Maybe something like this:
Book1
ABCDEF
1DateIn/OutMonthTotal
2January 2, 2022112
3January 5, 2022-229
4January 6, 20223
5February 8, 20224
6February 22, 20225
Sheet5
Cell Formulas
RangeFormula
F2:F3F2=SUMPRODUCT(--(MONTH($B$2:$B$6)=E2),$C$2:$C$6)
 
Upvote 0
Maybe something like this:
Book1
ABCDEF
1DateIn/OutMonthTotal
2January 2, 2022112
3January 5, 2022-229
4January 6, 20223
5February 8, 20224
6February 22, 20225
Sheet5
Cell Formulas
RangeFormula
F2:F3F2=SUMPRODUCT(--(MONTH($B$2:$B$6)=E2),$C$2:$C$6)
IS it possible without entering month numbers in Column E
 

Attachments

  • Excel Help 3.png
    Excel Help 3.png
    69.3 KB · Views: 4
Upvote 0
You mean something like this?

You will need to enter a date like 1/1/22 and then custom format as mmmm to show just month.

Book1
ABCDEF
1DateIn/OutMonthTotal
2January 2, 20221January2
3January 5, 2022-2February9
4January 6, 20223
5February 8, 20224
6February 22, 20225
Sheet5
Cell Formulas
RangeFormula
F2:F3F2=SUMPRODUCT(--(MONTH($B$2:$B$6)=MONTH(E2)),$C$2:$C$6)
 
Upvote 0
I dont have Month Column, whenever Month (also this sheet have info for multiple years) change in Date column Total Column shows IN/OUT for that month
 

Attachments

  • Excel Help 4.png
    Excel Help 4.png
    57 KB · Views: 4
Upvote 0
Try:
Book1
ABCDE
1DateIn/OutTotal/Month
2January 2, 202212
3January 5, 2022-2 
4January 6, 20223 
5February 8, 202249
6February 22, 20225 
7March 2, 20221225
8March 6, 202213 
9January 2, 2023148
10January 8, 2023-6 
11April 5, 20231616
Sheet6
Cell Formulas
RangeFormula
E2E2=SUMPRODUCT(--(YEAR($B$2:$B$11)=YEAR(B2)),--(MONTH($B$2:$B$11)=MONTH(B2)),$D$2:$D$11)
E3:E11E3=IF(MONTH(B3)=MONTH(B2),"",SUMPRODUCT(--(YEAR($B$2:$B$11)=YEAR(B3)),--(MONTH($B$2:$B$11)=MONTH(B3)),$D$2:$D$11))
 
Upvote 0
Solution
=IF(MONTH(B3)=MONTH(B2),"",SUMPRODUCT(--(YEAR($B$2:$B$11)=YEAR(B3)),--(MONTH($B$2:$B$11)=MONTH(B3)),$D$2:$D$11))
Thankyou for the help. I will love to understand more so I can support others. Always looking for learning opportunity
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

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