开发者

Column variables in Excel?

开发者 https://www.devze.com 2023-01-02 01:51 出处:网络
Let\'s say I have column A and Column B. Cells in Column A contain either \"Y\" or \"N\". How can I set the value of the cell in the corresponding row in Column B with a formula that detects if the ce

Let's say I have column A and Column B. Cells in Column A contain either "Y" or "N". How can I set the value of the cell in the corresponding row in Column B with a formula that detects if the cell's value = "N"?

Not new to programming logic but to Excel formulas, thanks for you开发者_如何学编程r help.

-Ryan


=IF(A2="Y", "yes", "no")


You'd do something along the lines of:

=IF(A1="Y","Yes","No")

This would put the word Yes in the cell the formula resides in if the value in cell A1 = Y. You can then drag that out using the fill handle (little black square in the bottom right corner of the cell) to copy for the rest of the column.


=A2="Y"

Will evaluate to a boolean TRUE/FALSE

0

精彩评论

暂无评论...
验证码 换一张
取 消