Hi,
I am struggling to make Textjoin work with an additional criteria.
I am using the above code, which works, but then i want to use the same one, but adding an additional condition, which should be the below:
Problem, i see.. is that apart from seeing #Spill! error, is that it should actually give empty result.
The idea is to obtain IDs from a table, where there is blank cell in specific columns.
And also, same as above, but when at the same time, the status is Open.
There is a table called RawData, and column names are as mentioned in the code. All i care is about the empty cells from the columns, and obtain the ID.
Hope it makes sense the explanation.
Thanks in advance!
Dani
I am struggling to make Textjoin work with an additional criteria.
VBA Code:
=TEXTJOIN(", ",TRUE,UNIQUE(FILTER(RawData[ID],RawData[Issue Status]="","")))
I am using the above code, which works, but then i want to use the same one, but adding an additional condition, which should be the below:
Code:
=IF(RawData[Aggregate status]="Open",TEXTJOIN(", ",TRUE,UNIQUE(FILTER(RawData[ID],RawData[Issue Status]="",""))),"")
Problem, i see.. is that apart from seeing #Spill! error, is that it should actually give empty result.
The idea is to obtain IDs from a table, where there is blank cell in specific columns.
And also, same as above, but when at the same time, the status is Open.
There is a table called RawData, and column names are as mentioned in the code. All i care is about the empty cells from the columns, and obtain the ID.
Hope it makes sense the explanation.
Thanks in advance!
Dani