IF statement: how to leave cell blank if condition is false (“” does not work)

前端 未结 15 2065
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-04 12:14

I would like to write an IF statement, where the cell is left blank if the condition is FALSE. Note that, if the following formula is entered in C1 (for which the co

15条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-04 12:26

    To Validate data in column A for Blanks

    Step 1: Step 1: B1=isblank(A1)

    Step 2: Drag the formula for the entire column say B1:B100; This returns Ture or False from B1 to B100 depending on the data in column A

    Step 3: CTRL+A (Selct all), CTRL+C (Copy All) , CRTL+V (Paste all as values)

    Step4: Ctrl+F ; Find and replace function Find "False", Replace "leave this blank field" ; Find and Replace ALL

    There you go Dude!

提交回复
热议问题