I have the following dataset and I need to count rows in a few different scenarios.
Client. Lead Alliance Lead Architect
aaaa Bryan Jennifer
bbb Lance Daniel
cccc Jesse Denise
- Count rows where there’s a value in all three columns (Lead, Alliance Lead and Architect)
- Count rows where there’s a value in the Lead or Alliance Lead (could be a value in any of those two columns) but null in the architect column
- Count rows where both Lead or Alliance Lead are null but there’s a value in the architect column
- Count rows with specific values on those columns
I created a calculated field and was trying to use countIf(isNull({Lead} OR isNull(Alliance Lead} AND isNotNull({Architect}))) but is not working. What would be the proper format for that? Also if I have specific values on those rows that I want to count like per name for example what would be the best way to do that?
Appreciate any help as you can see I am new to all of this.Thanks!