![]() |
Conditions
Hello,
Thanks in advance for the help. I want to return the word "TRUE" in column G2 if column A2 shows "SF" and Column I2 is blank. If column A shows anything other than "SF" it will not meat the condition and G2 should remain blank. If I2 shows any data, then G2 should remian blank. Again, thanks for the help. Jim |
Conditions
=IF(AND(A2="SF",I2=""),TRUE,"")
-- __________________________________ HTH Bob "Jim" wrote in message ... Hello, Thanks in advance for the help. I want to return the word "TRUE" in column G2 if column A2 shows "SF" and Column I2 is blank. If column A shows anything other than "SF" it will not meat the condition and G2 should remain blank. If I2 shows any data, then G2 should remian blank. Again, thanks for the help. Jim |
Conditions
Use this formula.
=IF(AND((A2="SF"),(I2="")),"TRUE","") If this post helps, Click Yes! -------------------- (Ms-Exl-Learner) -------------------- "Jim" wrote: Hello, Thanks in advance for the help. I want to return the word "TRUE" in column G2 if column A2 shows "SF" and Column I2 is blank. If column A shows anything other than "SF" it will not meat the condition and G2 should remain blank. If I2 shows any data, then G2 should remian blank. Again, thanks for the help. Jim |
Conditions
Yes, but you don't need so many parentheses.
You can change =IF(AND((A2="SF"),(I2="")),"TRUE","") to =IF(AND(A2="SF",I2=""),"TRUE","") And are you sure that the OP wanted the text string "TRUE"? If Jim wanted the boolean value TRUE, throw away the quote marks round it, and make it =IF(AND(A2="SF",I2=""),TRUE,"") -- David Biddulph "Ms-Exl-Learner" wrote in message ... Use this formula. =IF(AND((A2="SF"),(I2="")),"TRUE","") If this post helps, Click Yes! -------------------- (Ms-Exl-Learner) -------------------- "Jim" wrote: Hello, Thanks in advance for the help. I want to return the word "TRUE" in column G2 if column A2 shows "SF" and Column I2 is blank. If column A shows anything other than "SF" it will not meat the condition and G2 should remain blank. If I2 shows any data, then G2 should remian blank. Again, thanks for the help. Jim |
Conditions
David Sir,
I am getting lot of valuable informations from you... -------------------- (Ms-Exl-Learner) -------------------- "David Biddulph" wrote: Yes, but you don't need so many parentheses. You can change =IF(AND((A2="SF"),(I2="")),"TRUE","") to =IF(AND(A2="SF",I2=""),"TRUE","") And are you sure that the OP wanted the text string "TRUE"? If Jim wanted the boolean value TRUE, throw away the quote marks round it, and make it =IF(AND(A2="SF",I2=""),TRUE,"") -- David Biddulph "Ms-Exl-Learner" wrote in message ... Use this formula. =IF(AND((A2="SF"),(I2="")),"TRUE","") If this post helps, Click Yes! -------------------- (Ms-Exl-Learner) -------------------- "Jim" wrote: Hello, Thanks in advance for the help. I want to return the word "TRUE" in column G2 if column A2 shows "SF" and Column I2 is blank. If column A shows anything other than "SF" it will not meat the condition and G2 should remain blank. If I2 shows any data, then G2 should remian blank. Again, thanks for the help. Jim . |
All times are GMT +1. The time now is 02:32 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com