Excel formula help

gwhiz921

New Member
Joined
Sep 29, 2021
Messages
19
Office Version
  1. 365
Platform
  1. Windows
Hi, I am having a hard time for the below formulas for my sheet.

1. I need a formula that shows OPEN tasks for the current month and Closed tasks for the current month. This formula will be displayed on the first sheet but pulled from the data pull sheet as shown in picture.
 

Attachments

  • datapull.PNG
    datapull.PNG
    176.6 KB · Views: 16

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Hi & welcome to MrExcel.
How about
Excel Formula:
=FILTER(Table1,(TEXT(Table1[Created],"mmmyy")=TEXT(TODAY(),"mmmyy"))*((Table1[Progress]="Open")+(Table1[Progress]="Closed")))
Change table name to suit
 
Upvote 0
Hi & welcome to MrExcel.
How about
Excel Formula:
=FILTER(Table1,(TEXT(Table1[Created],"mmmyy")=TEXT(TODAY(),"mmmyy"))*((Table1[Progress]="Open")+(Table1[Progress]="Closed")))
Change table name to suit
Could I use an if function instead?
 
Upvote 0
Not really, does the formula I suggested not work?
 
Upvote 0
I'm not sure what i need to change to get your formula to work.

I was able to use the formula below to count the occurences in a specific month:

=SUM(IF(MONTH('Data Pull'!B2:B500)=8,))

But i would like to count the occurrences in current month that shows status as open.

the open column is column D on the DataPULL sheet.
 
Upvote 0
Did the formula I suggested work?
 
Upvote 0
Will you only have dates from one year?
 
Upvote 0
In that case how about
Excel Formula:
=FILTER(Table1,(MONTH(Table1[Created])=MONTH(TODAY()))*((Table1[Progress]="Open")+(Table1[Progress]="Closed")))
 
Upvote 0

Forum statistics

Threads
1,215,212
Messages
6,123,656
Members
449,114
Latest member
aides

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