IF FORMULA

Nixson

New Member
Joined
Feb 11, 2018
Messages
18
Office Version
  1. 2016
Platform
  1. Windows
HI,

Could you please help me for below,

i need formula for to get month wise due & month wise Payment done. if due Payment done it should not reflect Payment due month wise other wise Payment done.


1594210503711.png
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try

Code:
G2 =SUMPRODUCT($B$2:$B$11,--(TEXT($C$2:$C$11,"mmm yyyy")=G1&" 2020"),--($D$2:$D$11=""))
G4 =SUMPRODUCT($B$2:$B$11,--(TEXT($D$2:$D$11,"mmm yyyy")=G3&" 2020"))

Then copy G2 & G4 right.
 
Upvote 0
HI

If payment is done, then value should reflect in payment done column as per the due date month
 
Upvote 0
If you want row 4 to be based on the Due date and not the Payment date, try:

Code:
G4 =SUMPRODUCT($B$2:$B$11,--(TEXT($C$2:$C$11,"mmm yyyy")=G1&" 2020"),--($D$2:$D$11<>""))
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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