Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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
![]() |
|||
|
|||
![]()
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(a37<true,"",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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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
![]() |
|||
|
|||
![]()
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(a37<true,"",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(a37<true,"",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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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
![]() |
|||
|
|||
![]()
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(a37<true,"",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(a37<true,"",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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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
![]() |
|||
|
|||
![]()
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(a37<true,"",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(a37<true,"",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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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
![]() |
|||
|
|||
![]()
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(a37<true,"",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(a37<true,"",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(a1<true,"",sum(b:b)) (don't put this formula in Column B--or adjust the range: =if(a1<true,"",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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I use a check box to accept a calculation | Excel Discussion (Misc queries) | |||
Auto spell check as in word | Excel Discussion (Misc queries) | |||
spell check protected document | Excel Discussion (Misc queries) | |||
Creating Formula using check boxes | Excel Discussion (Misc queries) | |||
Creating a check box that does not require security clearance. | Excel Worksheet Functions |