SOLVED

Excel on COUNTIFS

Copper Contributor

Untitled.jpgCan anyone help with what is wrong in this formula
=COUNTIFS(B2:B5,">=EOMONTH(TODAY(),-2) +1",C2:C5,"N/A",D2:D5,"<=EOMONTH(TODAY(),-2) +28")
it's return value is just zero. please help me.

3 Replies
best response confirmed by donchips90 (Copper Contributor)
Solution

@donchips90 

Place the expressions using EOMONTH outside the quotes:

 

=COUNTIFS(B2:B5,">="&EOMONTH(TODAY(),-2) +1,C2:C5,"N/A",D2:D5,"<="&EOMONTH(TODAY(),-2) +28)

@Hans Vogelaar thanks for the solution it has helped i appreciate.

but i have failed to understand again why still it fails to from this data i have attached excel workbook link. please try to see if you can help. or if anyone can, please.data13.jpghttps://1drv.ms/x/s!AtpPCuFXM6F2jDNkzxyxkGZN4WjD?e=9lLVxd 

@donchips90 

The values in the DATES, DATES2 and DATES3 columns look like dates but they are text values.

To correct this:

  • Select the DATES column.
  • On the Data tab of the ribbon, click Text to Columns.
  • Click Next > twice.
  • Select Date, and select DMY from the drop down list next to it.
  • Click Finish.
  • Repeat for the other two date columns.

See the attached version.

1 best response

Accepted Solutions
best response confirmed by donchips90 (Copper Contributor)
Solution

@donchips90 

Place the expressions using EOMONTH outside the quotes:

 

=COUNTIFS(B2:B5,">="&EOMONTH(TODAY(),-2) +1,C2:C5,"N/A",D2:D5,"<="&EOMONTH(TODAY(),-2) +28)

View solution in original post