Farhan Shariff

Farhan Shariff

  • NA
  • 933
  • 237.8k

Microsoft Excel formula

Aug 3 2017 3:49 PM
I am new to MS excel and trying to write a MS excel formula :
 
here I want to COUNT the number of TRUE and FALSE values 

an example of the scenario:
 
Functional AreaTest type
MultipleFALSE
OSTRUE
TPSFALSE
OSFALSE
MultipleTRUE
MultipleFALSE
TPSTRUE
MultipleTRUE
MultipleFALSE
OSTRUE
MultipleTRUE
OSFALSE
TPSTRUE
OSFALSE
 
 
Functional AreaTRUEFALSE
Multiple  
OIS  
TPS  
 
 what is the format of formula for the TRUE and FALSE cell
 
the code would be something like;
 
int count=0;
for(i=0;i< totalrows(functional area);i++)
{
 if(functiona area=="ÖIS"&&Test type=TRUE)
 
cell value=count++; 
 

Answers (1)