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
it's still duplicating the table (without the formatting)
 

Attachments

  • example.PNG
    example.PNG
    156.6 KB · Views: 3
Upvote 0

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
it's still duplicating the table (without the formatting)
is there something i should be editing within the formula? Could i use countif? or sumif?

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

the formula above shows all entries for august, but can I show entries for current month that shows status as open?
 
Upvote 0
You originally asked for both Open & Closed tasks for the current month, which is exactly what the formula is doing.
Are you now saying you want something different?
 
Upvote 0
Sorry for confusion, one formula for open tasks and one formula for closed tasks. I apologize!
 
Upvote 0
Sorry for confusion, one formula for open tasks and one formula for closed tasks. I apologize!
i would like it to count how many open tasks are in current month
how many closed tasks are in current month.
 
Upvote 0
In that case try
Excel Formula:
=FILTER(Table1,(MONTH(Table1[Created])=MONTH(TODAY()))*(Table1[Progress]="Open"))
 
Upvote 0
In that case try
Excel Formula:
=FILTER(Table1,(MONTH(Table1[Created])=MONTH(TODAY()))*(Table1[Progress]="Open"))
can it give me a numeric value? a count of how many. not the rows.
 
Upvote 0
Why didn't you ask for that to begin with?
Excel Formula:
=COUNT(FILTER(Table1,(MONTH(Table1[Created])=MONTH(TODAY()))*(Table1[Progress]="Open")))
 
Upvote 0
=COUNT(FILTER(Table1,(MONTH(Table1[Created])=MONTH(TODAY()))*(Table1[Progress]="Open")))
this works fine for open.

I plugged in replaced open with closed and the number returned 22. Correct number is 12. Any reason why this might have happened?
 
Upvote 0
Yup that's my mistake, it should be
Excel Formula:
=COUNT(FILTER(Table1[Created],(MONTH(Table1[Created])=MONTH(TODAY()))*(Table1[Progress]="Open")))
otherwise it's counting all numerical cells in the table
 
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,384
Members
448,889
Latest member
TS_711

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