Forum Discussion

rehanmaqbul's avatar
rehanmaqbul
Copper Contributor
Feb 06, 2022
Solved

Blank value in Cell

Hi, I have a problem calculating. I have a column containing three types of values i.e. Yes, No, and a blank cell. I am creating two columns of Yes & No. In the cell, I write the formula (=if(a1="Yes...
  • Riny_van_Eekelen's avatar
    Feb 06, 2022

    rehanmaqbul 

    For the Yes column enter:

    =IF(ISBLANK(A1),"",--(A1="Yes"))

     

    For the No column enter:

    =IF(ISBLANK(A1),"",--(A1="No"))

     

    And copy the formulae down.