A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Setting up and Configuration
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Creating a check mark box



 
 
Thread Tools Display Modes
  #1  
Old March 22nd, 2005, 08:13 PM
MarthaSue
external usenet poster
 
Posts: n/a
Default Creating a check mark box

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?
  #2  
Old March 22nd, 2005, 09:08 PM
Dave Peterson
external usenet poster
 
Posts: n/a
Default

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?


--

Dave Peterson
  #3  
Old March 22nd, 2005, 09:41 PM
MarthaSue
external usenet poster
 
Posts: n/a
Default

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene


"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?


--

Dave Peterson

  #4  
Old March 23rd, 2005, 01:24 AM
Dave Peterson
external usenet poster
 
Posts: n/a
Default

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?


--

Dave Peterson


--

Dave Peterson
  #5  
Old March 24th, 2005, 04:19 AM
MarthaSue
external usenet poster
 
Posts: n/a
Default

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson

  #6  
Old March 24th, 2005, 03:49 PM
Dave Peterson
external usenet poster
 
Posts: n/a
Default

I'm hear lots of times. But if you post, you'll get a lot of responses.

I still think that formula would work--unless I'm missing something.

This is equivalent, but I find it easier to read:

=if(a37=true,375,"")
or
=if(a37=true,375,0)

This formula does go into one of the cells in the total column.


MarthaSue wrote:

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #7  
Old March 31st, 2005, 10:35 PM
MarthaSue
external usenet poster
 
Posts: n/a
Default

New problem. Check box works initially, but if I click on the box to remove
the checkmark it gives me "False" in the total column. Then if I click on it
again to give me a check mark it gives me "True" instead of my value
($375.00). Please help.

"MarthaSue" wrote:

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson

  #8  
Old April 1st, 2005, 01:42 PM
Dave Peterson
external usenet poster
 
Posts: n/a
Default

Is your linked cell in the range of stuff you want to add?

If yes, move that linked cell out of the way.

If no, post back the formula you use, the cell that its in and the linked cell's
address (all three).

MarthaSue wrote:

New problem. Check box works initially, but if I click on the box to remove
the checkmark it gives me "False" in the total column. Then if I click on it
again to give me a check mark it gives me "True" instead of my value
($375.00). Please help.

"MarthaSue" wrote:

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #9  
Old April 1st, 2005, 10:31 PM
MarthaSue
external usenet poster
 
Posts: n/a
Default

Sorry Dave, I'm not sure I'm understanding what you mean. How do I know if
it is in the range that I want to add? How do I move the linked cell?How do
I post back the formula and link all three? Sorry I'm not following your
reply. . ..

"MarthaSue" wrote:

New problem. Check box works initially, but if I click on the box to remove
the checkmark it gives me "False" in the total column. Then if I click on it
again to give me a check mark it gives me "True" instead of my value
($375.00). Please help.

"MarthaSue" wrote:

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson

  #10  
Old April 2nd, 2005, 12:44 AM
Dave Peterson
external usenet poster
 
Posts: n/a
Default

When you put the checkbox on the worksheet, you assigned a linked cell.
#1. What was the address of that linked cell?

When you wrote the formula in the worksheet, you typed it into a cell.
#2. What was the address of that cell?

When you wrote the formula to total your numbers, you wrote a formula in a cell?
#3. What was the address of that cell that contained the formula?
#4. And what was the formula you used? (You can copy the formula from the
formula bar and paste into your response.)

Your responses he

#1.

#2.

#3.

#4.



MarthaSue wrote:

Sorry Dave, I'm not sure I'm understanding what you mean. How do I know if
it is in the range that I want to add? How do I move the linked cell?How do
I post back the formula and link all three? Sorry I'm not following your
reply. . ..

"MarthaSue" wrote:

New problem. Check box works initially, but if I click on the box to remove
the checkmark it gives me "False" in the total column. Then if I click on it
again to give me a check mark it gives me "True" instead of my value
($375.00). Please help.

"MarthaSue" wrote:

Sorry I don't think I explained myself properly. I am creating an electronic
field ticket. In this case, if an employee had used this product, they would
check the box in a37, and that would put the $375. amount in the total column
on the right hand side of the ticket column. If the product is being used,
the box is not checked, and the $375 value won't be put in the total column.
I hope this makes sense. Thanks for all your help Dave, I really appreciate
it. Do you visit this site often, I would love to pick your brain about some
other stuff, if the need arose?

"Dave Peterson" wrote:

First, a formula can only return a value to that cell that holds the function.

So you'd have to put this in U37:
=if(a37true,"",375)

But I don't see how this fits in your Total amount????




MarthaSue wrote:

Hi Dave, thanks for the quick response. I am still having trouble, please
forgive me, as I am learning as I go. When i am trying to do the cell link, I
am getting an error
"The text you entered is not a valid reference or defined name".

I wrote =if(a37true,"",then(U37=$375.00). If the box is checked then I
want Excel to enter the dollar amount (375.00) in the total amount. I am
creating an electronic ticket. Please let me know if you can help me. I
appreciate your time,
Sharlene

"Dave Peterson" wrote:

Show the Forms toolbar (View|toolbars|Forms)

You'll see a checkbox on that toolbar.
Click on it and draw your checkbox in the cell you want.
Now right click on that checkbox and select Format Control
Then on the Control Tab, assign a nice Cell link (I'll use A1).
(if you protect that sheet, make sure that cell link is unlocked.)

Now use a formula that checks the value in that cell link:

=if(a1true,"",sum(b:b))
(don't put this formula in Column B--or adjust the range:
=if(a1true,"",sum(b2:B9999))



MarthaSue wrote:

I would like to create a check mark box in my excel document so that I can
click on it and a check mark will appear. I would then like to create a
formula that would add a dollar amount in the total column if the checkmark
is present. Could someone please let me know how I can go about doing this?

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how do i make check mark boxes in mircosoft word//?? need some help .. General Discussion 1 January 12th, 2005 03:02 AM
Spell Check, on Word 2002; Other Languages June New Users 5 December 14th, 2004 02:31 PM
File Check Out System Emily Database Design 3 September 29th, 2004 05:25 PM
Adding a box and a check mark in Word 97 Rick New Users 2 June 18th, 2004 11:08 PM


All times are GMT +1. The time now is 11:34 AM.


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