If cell D10 has anything of any value in it I would like cell D5 to display
a result of ‘X’ however if cell D10 is blank then I would like cell D5 to
remain blank.
The 'X' is actually be an 'X'
Thanks
=IF(D10="","","X")
--
Biff
Microsoft Excel MVP
"Ksean" <Ks...@discussions.microsoft.com> wrote in message
news:F4DBEFA1-4AEF-41AF...@microsoft.com...
That is to say if cell D10 and/or G10 and/or J10 have anything of any value
in either of them I would like cell D5 to display a result of 'X' however if
cell D10 and/or G10 and/or J10 are all blank then I would like cell D5 to
remain blank.
Thanks,
Ksean
"T. Valko" wrote:
> .
>
=IF(COUNTA(D10,G10,J10),"X","")
If any of those cells contain formulas that might return formula blanks ("")
the formula will "see" that and consider that to be something in the cell.
--
Biff
Microsoft Excel MVP
"Ksean" <Ks...@discussions.microsoft.com> wrote in message
news:3E259B3D-474A-4925...@microsoft.com...
"T. Valko" wrote:
> .
>
--
Biff
Microsoft Excel MVP
"Ksean" <Ks...@discussions.microsoft.com> wrote in message
news:4B520CFF-F523-4CBD...@microsoft.com...