Forum Discussion
lamarsmith
Oct 06, 2021Copper Contributor
IF FUNCTION WITH INDEX AND MATCH TO RETURN MULTIPLE VALUES
Hi team, I'm having trouble with the INDEX AND MATCH Formula. Here's what I'm trying to achieve. On the attached Workbook, I have two sheets. Sheet "Data" has all the information I want the formu...
- Oct 06, 2021
lamarsmith You tagged your question with "Excel for Web". Then you can use the FILTER function in conjunction with TEXTJOIN as demonstrated in the attached file. Note that I converted the Data into a structured table (called "tblData"). This makes referencing a lot easier.
SergeiBaklan
Oct 06, 2021Diamond Contributor
Just in case, PivotTable with DAX measure
Outstanding training:=CALCULATE (
CONCATENATEX ( tblData, tblData[Training Title], ", " ),
tblData[Transcript Status] <> "Completed"
)
could work.
Shall work in Excel for web if only data model create in desktop version.
lamarsmith
Oct 06, 2021Copper Contributor
Thanks! This is helpful
- SergeiBaklanOct 06, 2021Diamond Contributor
lamarsmith , you are welcome