View Single Post
 
Old 06-14-2024, 12:31 PM
p45cal's Avatar
p45cal p45cal is offline Windows 10 Office 2021
Expert
 
Join Date: Apr 2014
Posts: 956
p45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond reputep45cal has a reputation beyond repute
Default

I'm not at all sure how you can total the Risk Level column, so this is counting non-empty cells in that column when the Product column is exactly Secure or Unsecure.
Code:
=SUM((February[Product]="Secured")+(February[Product]="Unsecured")*(TRIM(February[[Risk Level ]])<>""))
This one looks for secure in the Product column (which includes Unsecure and Secured LA) and non=empty cells in Risk Level column:
Code:
=SUM(ISNUMBER(SEARCH("secure",February[Product]))*(TRIM(February[[Risk Level ]])<>""))
Still a bit of a guess as to what you want.
Reply With Quote