I am looking for a formula to concatenate cell values (say A1:E1) to G1 if they are in a certain range, like cells values are smaller than < 7, or cell values are between 8 and 15, etc.
I tried to create a formula like this : =concatenate(if(A1:E1<7,"")) which is not correct. I couldn't find similar example on the internet either.
Example:
A1:1 | B1:2 | C1:3 | D1:5 | E1:50
Concatenate if A1:E1 is smaller than 7 => Result : G1: (1,2,3,5)
Concatenate if A1:E1 is between 1 and 7 => Result : G1: (2,3,5)
Concatenate if A1:E1 is bigger than 10 => Result : G1: (50)
How can I achieve this? Thanks!!