Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Check Box Question

How do I achieve the following?

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Check Box Question

Try this entered in D5:

=IF(D10="","","X")

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
How do I achieve the following?

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



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Check Box Question

How would I adjust your formula to handle three different cells at the same
time?
i.e. D10 and/or G10 and/or J10.

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:

Try this entered in D5:

=IF(D10="","","X")

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
How do I achieve the following?

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



.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Check Box Question

Maybe this...

=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" wrote in message
...
How would I adjust your formula to handle three different cells at the
same
time?
i.e. D10 and/or G10 and/or J10.

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:

Try this entered in D5:

=IF(D10="","","X")

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
How do I achieve the following?

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



.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 55
Default Check Box Question

Thanks, your formulas worked great!



"T. Valko" wrote:

Maybe this...

=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" wrote in message
...
How would I adjust your formula to handle three different cells at the
same
time?
i.e. D10 and/or G10 and/or J10.

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:

Try this entered in D5:

=IF(D10="","","X")

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
How do I achieve the following?

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


.



.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Check Box Question

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
Thanks, your formulas worked great!



"T. Valko" wrote:

Maybe this...

=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" wrote in message
...
How would I adjust your formula to handle three different cells at the
same
time?
i.e. D10 and/or G10 and/or J10.

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:

Try this entered in D5:

=IF(D10="","","X")

--
Biff
Microsoft Excel MVP


"Ksean" wrote in message
...
How do I achieve the following?

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


.



.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
check box question mac Excel Worksheet Functions 3 September 1st 09 12:20 AM
Question regarding VLookup and if it can check two columns of data Smoke Excel Worksheet Functions 2 September 23rd 08 09:10 PM
Check box logic question Ailsa02 Excel Worksheet Functions 4 August 23rd 08 04:04 PM
Question to check the conditions and then print the result. Neelakanta New Users to Excel 1 June 18th 08 08:15 AM
Increase size of a Forms Check Box (click on to enter check mark) 718Satoshi Excel Discussion (Misc queries) 0 August 17th 07 01:52 AM


All times are GMT +1. The time now is 03:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"