![]() |
some kind of Conditional format? - Baffled :(
Hi all,
I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave |
some kind of Conditional format? - Baffled :(
Not conditional format, but in B1 you can use the formula
=IF(A1="","","Closed") -- David Biddulph "Dave" wrote in message ... Hi all, I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave |
some kind of Conditional format? - Baffled :(
=IF(LEN(A1)<0,"Closed","")
-- Hope this helps. If it does, please click the Yes button. Thanks in advance for your feedback. Gary Brown "Dave" wrote: Hi all, I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave . |
some kind of Conditional format? - Baffled :(
Or you could shorten that to =IF(LEN(A1)0,"Closed",""), as it is unlikely
that LEN will be negative. :-) -- David Biddulph "Gary Brown" wrote in message ... =IF(LEN(A1)<0,"Closed","") -- Hope this helps. If it does, please click the Yes button. Thanks in advance for your feedback. Gary Brown "Dave" wrote: Hi all, I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave . |
some kind of Conditional format? - Baffled :(
On 26/01/2010 16:13, Dave wrote:
Hi all, I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave Thank you for your help gentlemen - I now feel rather stupid :( -- Regards Dave |
some kind of Conditional format? - Baffled :(
Or perhaps (in B1): =IF(ISBLANK(A1),"","Closed") ?
"Dave" wrote: Hi all, I've got an issue where I need a formula that when I put a date (or any value) in cell A1, the text 'Closed' is automatically entered in cell B1 - I'm sure I've seen it somewhere before (probably used it too), but I've searched in vain - can anyone help? TIA Dave . |
All times are GMT +1. The time now is 04:52 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com