=COUNTIFS(RANGE;X)

Copper Contributor

Hi,

my question  is if I have to put into the X criteria a relalatives how can I do it?

For instance:

- E1 cell contains "4"

- The range is a numeric order from 1 upto 100 in the cells between A1 and A100.

- And the COUNTIFS function has to return with the count of numbers that are less than E1 cell's containt.

 

The solution should be 3 (1, 2 and 3)

 

How the formular looks out?

2 Replies

@Manner20 

Here's a good explanation of the function. Basically the function is broken by range then criteria. 

 

In your case, to get all values that are less than, you have to tie the strings together

 

A1:A100 (the range)

E1 = 4 (the criteria)

 

=COUNTIFS($A$1:$A$100,"<"&E1)

 

Hi Mannar20

You can use this formalue
=COUNTIF(A1:A100,"<"&E1)