Hello All,
The following formulas work with a single reference number in a cell. The issue is that some cells contain two reference numbers separated by a comma (example: 123, 345). How can I modify formulas to account for one and/or both reference numbers?. Any help would be greatly appreciated.
INDEX/MATCH:
SUMIF:
Trying to avoid using something like:
Regards,
Morey
The following formulas work with a single reference number in a cell. The issue is that some cells contain two reference numbers separated by a comma (example: 123, 345). How can I modify formulas to account for one and/or both reference numbers?. Any help would be greatly appreciated.
INDEX/MATCH:
Code:
=IFERROR(INDEX('Report'!C:C,MATCH(N31+0,'Report'!F:F,0))&"", "Pending")
SUMIF:
Code:
=SUMIFS('Report'!I:I,'Report'!C:C,P31)
Trying to avoid using something like:
Code:
=SUMIF('Report'!C:C,"123",'Report'!H:H)+SUMIF('Report'!C:C,"345",'Report'!H:H)
Regards,
Morey