Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() http://www.digitaluprising.net/site/...lumberlist.jpg I am looking to make a function that will do the following.... I have two cells... one thats in pieces, and one in length... i have a checkbox that i want to add a percentage to an amount already entered into either the length or pieces cell... which cell it adds the percentage too will be decided by a drop down box...please see the graphic for help understanding... basically what i want to do is add a percentage based on a checkbox and defined based upon a dropdown box into a cell which already has a value entered into it. -- foxgguy2005 ------------------------------------------------------------------------ foxgguy2005's Profile: http://www.excelforum.com/member.php...o&userid=23663 View this thread: http://www.excelforum.com/showthread...hreadid=374954 |
#2
![]() |
|||
|
|||
![]()
Hi!
If you want to do this with worksheet formulas then you'll need to use a helper cell. See this screen cap: http://img268.echo.cx/img268/8138/xlhelp5dv.jpg I figured it would be easier to show than to write a small book explaining. (I may be wrong!) Basically, I linked the checkboxes to the cells that they're "in". I set the font color of those cells to be the same as the fill color so that you cant see the TRUE or FALSE. The formula shown is only for "Length". You can use it as a guide to come up with one for "pieces". Biff "foxgguy2005" wrote in message ... http://www.digitaluprising.net/site/...lumberlist.jpg I am looking to make a function that will do the following.... I have two cells... one thats in pieces, and one in length... i have a checkbox that i want to add a percentage to an amount already entered into either the length or pieces cell... which cell it adds the percentage too will be decided by a drop down box...please see the graphic for help understanding... basically what i want to do is add a percentage based on a checkbox and defined based upon a dropdown box into a cell which already has a value entered into it. -- foxgguy2005 ------------------------------------------------------------------------ foxgguy2005's Profile: http://www.excelforum.com/member.php...o&userid=23663 View this thread: http://www.excelforum.com/showthread...hreadid=374954 |
#3
![]() |
|||
|
|||
![]() Is there a way to make that formula part of the drop down menu that way it will check the quantities or lengths dependant on the dropdown menu's choice and then overwrite the selected cell with the new data + percentage? -- foxgguy2005 ------------------------------------------------------------------------ foxgguy2005's Profile: http://www.excelforum.com/member.php...o&userid=23663 View this thread: http://www.excelforum.com/showthread...hreadid=374954 |
#4
![]() |
|||
|
|||
![]()
Hi!
No, that can't be done. One thing of note. I assummed that one of those 3 options would always be selected in which case the formula will work just fine. However, if none of those options is selected then the formula could return a zero even though there is a value in the length cell. This formula will take that possibility into account: =IF(B3="","",IF(J2=B2,SUM(B3,((G2=TRUE)*B3*0.1),(( H2=TRUE)*B3*0.15),((I2=TRUE)*B3*0.2)),"")) If you don't want to use the formula you can try posting this in the programming forum. Maybe someone can come up with something. Biff "foxgguy2005" wrote in message ... Is there a way to make that formula part of the drop down menu that way it will check the quantities or lengths dependant on the dropdown menu's choice and then overwrite the selected cell with the new data + percentage? -- foxgguy2005 ------------------------------------------------------------------------ foxgguy2005's Profile: http://www.excelforum.com/member.php...o&userid=23663 View this thread: http://www.excelforum.com/showthread...hreadid=374954 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Automatically up date time in a cell | Excel Discussion (Misc queries) | |||
up to 7 functions? | Excel Worksheet Functions | |||
Can I count in an array based on a function? | Excel Worksheet Functions | |||
copy a cell value not its function | Excel Discussion (Misc queries) | |||
Function to return colour of formatted cell | Excel Worksheet Functions |