mart_mrexcel
Active Member
- Joined
- Aug 23, 2008
- Messages
- 310
- Office Version
- 365
- Platform
- Windows
I am trying to check if any of the "name" result in Let() is TRUE then return TRUE. When I use the COUNTIF() formula inside the Let(), it gives me #VALUE! error.
A | B | C | D | E |
1 | Group | Type | Total | |
2 | Stationary | Note Book | 8 | =LET(Group,A2="Computer", LET(Type,B2="Note Book", LET(Total,C2<50, IF(COUNTIFS((Group,Type,Total),TRUE)>0,TRUE,FALSE)))) |
3 |