0
         
         
          
            
              
          
          
          
           
           
          
         
        
        countif
 
           I'm trying to recreate a function like countif to create a table showing me how many times 1 parameter's element relates to a different parameters element. See diagram for example.
6 replies
- 
           Hi , you can simply create 2 custom measures in formulate app: 
 
 count(if([table].[win/lose] = "Win", 1, null))
 count(if([table].[win/lose] = "Lost", 1, null))
 
 Then query those measures together with the Name column in the discovery
 
 