Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Putting check marks in every cell in a column?

I can't seem to do this in one fell swoop. I can create a check on the
forms toolbar and paste it into a cell. But the cell is too small and
I'd rather not increase the size of the cell. I'd also like a check
mark in every cell that runs down a column, about 50 or so. Is there a
wat to automatically do this, as well?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 195
Default Putting check marks in every cell in a column?

Hi,

Creating a check means flagging the cells. So you might need VBA for
this. If you need flagging the cell without VBA you may use Y or N for
the cells. Try this one.


thanks

Shail


nickravo wrote:

I can't seem to do this in one fell swoop. I can create a check on the
forms toolbar and paste it into a cell. But the cell is too small and
I'd rather not increase the size of the cell. I'd also like a check
mark in every cell that runs down a column, about 50 or so. Is there a
wat to automatically do this, as well?


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Putting check marks in every cell in a column?

You lost me. Flagging?

shail wrote:
Hi,

Creating a check means flagging the cells. So you might need VBA for
this. If you need flagging the cell without VBA you may use Y or N for
the cells. Try this one.


thanks

Shail


nickravo wrote:

I can't seem to do this in one fell swoop. I can create a check on the
forms toolbar and paste it into a cell. But the cell is too small and
I'd rather not increase the size of the cell. I'd also like a check
mark in every cell that runs down a column, about 50 or so. Is there a
wat to automatically do this, as well?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 195
Default Putting check marks in every cell in a column?

Hi Nikravo,

It is unclear what you need to do by a check. With the check you will
either say ckecked or not (isn't it) or simply "YES" and "NO".

Suppose you have your data from A1 to A10, Then make a drop down
validation list on B1 saying Yes or No. Make it from Menu - Data /
Validation. Click on "Allow", select "List". Type: Yes, No in box given
below. Click Ok. Copy and Paste it till B10.

Now on the C1 till C10 you can have the function as
=if(B1="YES",...,if(B1="NO",...,"")

For "....", I mean what you want to do if YES is selected or what if NO
is selected.

I hope this works for you.


Thanks

Shail

nickravo wrote:
You lost me. Flagging?

shail wrote:
Hi,

Creating a check means flagging the cells. So you might need VBA for
this. If you need flagging the cell without VBA you may use Y or N for
the cells. Try this one.


thanks

Shail


nickravo wrote:

I can't seem to do this in one fell swoop. I can create a check on the
forms toolbar and paste it into a cell. But the cell is too small and
I'd rather not increase the size of the cell. I'd also like a check
mark in every cell that runs down a column, about 50 or so. Is there a
wat to automatically do this, as well?


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Putting check marks in every cell in a column?

Sorry to be so dense, but I haven't a clue what a valadation list is.
Let's say from A1 to A10 I want to put a check mark (yes is a check; no
is empty). What do I do?


shail wrote:
Hi Nikravo,

It is unclear what you need to do by a check. With the check you will
either say ckecked or not (isn't it) or simply "YES" and "NO".

Suppose you have your data from A1 to A10, Then make a drop down
validation list on B1 saying Yes or No. Make it from Menu - Data /
Validation. Click on "Allow", select "List". Type: Yes, No in box given
below. Click Ok. Copy and Paste it till B10.

Now on the C1 till C10 you can have the function as
=if(B1="YES",...,if(B1="NO",...,"")

For "....", I mean what you want to do if YES is selected or what if NO
is selected.

I hope this works for you.


Thanks

Shail

nickravo wrote:
You lost me. Flagging?

shail wrote:
Hi,

Creating a check means flagging the cells. So you might need VBA for
this. If you need flagging the cell without VBA you may use Y or N for
the cells. Try this one.


thanks

Shail


nickravo wrote:

I can't seem to do this in one fell swoop. I can create a check on the
forms toolbar and paste it into a cell. But the cell is too small and
I'd rather not increase the size of the cell. I'd also like a check
mark in every cell that runs down a column, about 50 or so. Is there a
wat to automatically do this, as well?




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 195
Default Putting check marks in every cell in a column?

Hi again Nickravo,

The use of check mark is much more tough than the use of Validation
List, because it uses VBA codes.

Just try what I told you before. Once you made it, you will feel it is
so easy to use.


Good luck

Shail


nickravo wrote:
Sorry to be so dense, but I haven't a clue what a valadation list is.
Let's say from A1 to A10 I want to put a check mark (yes is a check; no
is empty). What do I do?


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default Putting check marks in every cell in a column?

And what is a validation list?

shail wrote:
Hi again Nickravo,

The use of check mark is much more tough than the use of Validation
List, because it uses VBA codes.

Just try what I told you before. Once you made it, you will feel it is
so easy to use.


Good luck

Shail


nickravo wrote:
Sorry to be so dense, but I haven't a clue what a valadation list is.
Let's say from A1 to A10 I want to put a check mark (yes is a check; no
is empty). What do I do?


  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,688
Default Putting check marks in every cell in a column?

See this:

http://contextures.com/xlDataVal01.html

Biff

"nickravo" wrote in message
ups.com...
And what is a validation list?

shail wrote:
Hi again Nickravo,

The use of check mark is much more tough than the use of Validation
List, because it uses VBA codes.

Just try what I told you before. Once you made it, you will feel it is
so easy to use.


Good luck

Shail


nickravo wrote:
Sorry to be so dense, but I haven't a clue what a valadation list is.
Let's say from A1 to A10 I want to put a check mark (yes is a check; no
is empty). What do I do?




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
insert date Larry Excel Worksheet Functions 28 July 15th 06 02:41 AM
Making a particular cell or column required Ronco Excel Discussion (Misc queries) 0 April 26th 06 09:01 PM
run a macro in a locked cell Ray Excel Discussion (Misc queries) 8 January 10th 06 12:02 AM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
How do I reference every "n" cell in a column in Excel? Alma Excel Worksheet Functions 2 March 22nd 05 06:19 PM


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

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

About Us

"It's about Microsoft Excel"