The 0 and null in the condition of the IF function

01 wyeu 120 Reputation points
2024-09-16T14:09:45.9833333+00:00

If A1=0, then B1 displays' No ',

If A1 is null, then B1 displays "/",

Otherwise, B1 will display 'Other'

Excel Management
Excel Management
Excel: A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.Management: The act or process of organizing, handling, directing or controlling something.
1,715 questions
{count} votes

Accepted answer
  1. Barry Schwarz 2,901 Reputation points
    2024-09-16T23:12:11.4233333+00:00

    The IFS function is one way to achieve this.

    =IFS(A1="","/",A1=0,"No",TRUE,"Other")
    

    I assumed your quotation marks were grammatical and not part of the desired display.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.