Forum Discussion
Bowen0520
Dec 05, 2023Copper Contributor
Searching list of names within a cell
Hi there, I would need to produce a scorecard for the company. One of the criteria is google review. What I had done: Using "Name Manager" to assign all the staff name as StaffName. Using belo...
- Dec 05, 2023
Using 365
= LET( isMentioned, SIGN(ISNUMBER(SEARCH(staffName, TOROW(comments),1))), BYROW(isMentioned, LAMBDA(crit, SUM(crit))) )
Using legacy Excel
= MMULT( SIGN(ISNUMBER(SEARCH(staffName,TRANSPOSE(comments),1))), SIGN(ISTEXT(comments)) )
entered with CSE.
PeterBartholomew1
Dec 05, 2023Silver Contributor
Using 365
= LET(
isMentioned, SIGN(ISNUMBER(SEARCH(staffName, TOROW(comments),1))),
BYROW(isMentioned, LAMBDA(crit, SUM(crit)))
)
Using legacy Excel
= MMULT(
SIGN(ISNUMBER(SEARCH(staffName,TRANSPOSE(comments),1))),
SIGN(ISTEXT(comments))
)
entered with CSE.
- Bowen0520Dec 06, 2023Copper Contributor
A big THANK YOU for PeterBartholomew1!