Forum Discussion
joerames
May 24, 2019Copper Contributor
Array formula returning #VALUE when using large text-based field
Working on a report for a customer. Basic issue is data coming through on multiple rows and customer wants consolidated on one row. My reporting tool doesn't allow me to consolidate to one row as t...
- Jun 14, 2019
The formula could be
=TEXTJOIN(CHAR(10),TRUE,LEFT(AdhocTable[Immigration Status Update.Comments],IF([@[Assignment ID]]=AdhocTable[Assignment ID],LEN(AdhocTable[Immigration Status Update.Comments]),0)))
entered as array one (Ctrl+Shift+Enter). I take CHAR(10) (new line) as separator, you may change on any other symbol or text.
Please check attached.
SergeiBaklan
Jun 14, 2019Diamond Contributor
The formula could be
=TEXTJOIN(CHAR(10),TRUE,LEFT(AdhocTable[Immigration Status Update.Comments],IF([@[Assignment ID]]=AdhocTable[Assignment ID],LEN(AdhocTable[Immigration Status Update.Comments]),0)))
entered as array one (Ctrl+Shift+Enter). I take CHAR(10) (new line) as separator, you may change on any other symbol or text.
Please check attached.
joerames
Jun 14, 2019Copper Contributor
SergeiBaklan Brilliant!