Function to Reference Multiple Cells for Values

Copper Contributor

Hi there! So I want to use Excel to have a cell reference 4 other cells. The 4 other cells will either contain a number (1, 2, 3, or 4) or N/A (these 4 cells are also using IF functions so if their conditions aren't met, N/A is the entry).

ablackwell1205_0-1695493127784.png

Which formula can I use for my cell with "VALUE!" to only paste the data from the cells below it that actually has a numerical value, not N/A? Hope that made sense. Thanks!

 

 

1 Reply

@ablackwell1205 

=TEXTJOIN(",",,FILTER(E2:E5,NOT(ISNA(E2:E5))))

If you have access to TEXTJOIN and FILTER you can try this formula. The formula is in cell E1 and copied to cell F1.

textjoin.png