Forum Discussion
Count based on column drop down text
- Dec 09, 2022
sunilkumarkhanapure you'd need a calculated column for each of the Accept, N/A and Pending and the formula in each would be like this:
=IF(Column1="Accept",1,0)+IF(Column2="Accept",1,0)+IF(Column3="Accept",1,0) etc etc for all the columns.Then do the same for N/A and Pending:
=IF(Column1="N/A",1,0)+IF(Column2="N/A",1,0)+IF(Column3="N/A",1,0)
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
sunilkumarkhanapure you'd need a calculated column for each of the Accept, N/A and Pending and the formula in each would be like this:
=IF(Column1="Accept",1,0)+IF(Column2="Accept",1,0)+IF(Column3="Accept",1,0) etc etc for all the columns.
Then do the same for N/A and Pending:
=IF(Column1="N/A",1,0)+IF(Column2="N/A",1,0)+IF(Column3="N/A",1,0)
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
- sunilkumarkhanapureDec 09, 2022Copper ContributorRobElliott, thanks for your feedback, must appreciated, it works..