ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   New Users to Excel (https://www.excelbanter.com/new-users-excel/)
-   -   How do I do an if/then formula (https://www.excelbanter.com/new-users-excel/242711-how-do-i-do-if-then-formula.html)

mrsjcd3

How do I do an if/then formula
 
I know this should be simple but I need help,

I need a blank cell to have "X" and a non-blank cell to have "Have"

Thanks!

Eduardo

How do I do an if/then formula
 
Hi,
I don't quite understand your question, if you mean when A1 is blank to
enter an X in cell B1 or "Have" if A1 is not blank use

=if(A1="","X","HAVE")


"mrsjcd3" wrote:

I know this should be simple but I need help,

I need a blank cell to have "X" and a non-blank cell to have "Have"

Thanks!


Gord Dibben

How do I do an if/then formula
 
Why should it be simple?

A blank cell cannot have an "X" or it would not be blank<g

A cell cannot have a formula and a value.

Do you want to use formulas in helper cells to achieve this?

In B1 =IF(A1="","X","Have")

Do you want to use VBA code to achieve this without formulas?

Sub test()
For Each cell In Selection
If cell.Value = "" Then
cell.Value = "X"
Else
cell.Value = "Have"
End If
Next
End Sub


Gord Dibben MS Excel MVP


On Tue, 15 Sep 2009 10:41:01 -0700, mrsjcd3
wrote:

I know this should be simple but I need help,

I need a blank cell to have "X" and a non-blank cell to have "Have"

Thanks!



mrsjcd3

How do I do an if/then formula
 
I understand now. I will probably use the VBA in this instance.
Thanks!

"Gord Dibben" wrote:

Why should it be simple?

A blank cell cannot have an "X" or it would not be blank<g

A cell cannot have a formula and a value.

Do you want to use formulas in helper cells to achieve this?

In B1 =IF(A1="","X","Have")

Do you want to use VBA code to achieve this without formulas?

Sub test()
For Each cell In Selection
If cell.Value = "" Then
cell.Value = "X"
Else
cell.Value = "Have"
End If
Next
End Sub


Gord Dibben MS Excel MVP


On Tue, 15 Sep 2009 10:41:01 -0700, mrsjcd3
wrote:

I know this should be simple but I need help,

I need a blank cell to have "X" and a non-blank cell to have "Have"

Thanks!





All times are GMT +1. The time now is 09:51 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com