Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have an Invoice sheet that has a formula in the price section.If I want to
type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You don't. Or, if you do, don't save the file.
-- Don Guillett Microsoft MVP Excel SalesAid Software "cjbarron5" wrote in message ... I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thats what I thought but I was hopeing for someting diffrent
"cjbarron5" wrote: I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See if the following will work for you.
-- set up a "price override" cell. -- change your price formula to check this cell first. If there is use it, otherwise use your formula. This way the formula stays intact, but you can override it. Regards, Fred. "cjbarron5" wrote in message ... I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
here is the formula I have
set............=IF(ISNA(VLOOKUP(C18,TABLE1A,3,FALS E)),"",VLOOKUP(C18,TABLE1A,3,FALSE)) so to change it to check my "price override cell" first what do I need to do? any ideas "Fred Smith" wrote: See if the following will work for you. -- set up a "price override" cell. -- change your price formula to check this cell first. If there is use it, otherwise use your formula. This way the formula stays intact, but you can override it. Regards, Fred. "cjbarron5" wrote in message ... I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Let's say your override cell is in D5. Then use:
if(d5<0,d5,ISNA(VLOOKUP(C18,TABLE1A,3,FALSE)),"", VLOOKUP(C18,TABLE1A,3,FALSE)) Regards, Fred. "cjbarron5" wrote in message ... here is the formula I have set............=IF(ISNA(VLOOKUP(C18,TABLE1A,3,FALS E)),"",VLOOKUP(C18,TABLE1A,3,FALSE)) so to change it to check my "price override cell" first what do I need to do? any ideas "Fred Smith" wrote: See if the following will work for you. -- set up a "price override" cell. -- change your price formula to check this cell first. If there is use it, otherwise use your formula. This way the formula stays intact, but you can override it. Regards, Fred. "cjbarron5" wrote in message ... I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Correction:
if(d5<0,d5,if(ISNA(VLOOKUP(C18,TABLE1A,3,FALSE)), "",VLOOKUP(C18,TABLE1A,3,FALSE))) "Fred Smith" wrote in message ... Let's say your override cell is in D5. Then use: if(d5<0,d5,ISNA(VLOOKUP(C18,TABLE1A,3,FALSE)),"", VLOOKUP(C18,TABLE1A,3,FALSE)) Regards, Fred. "cjbarron5" wrote in message ... here is the formula I have set............=IF(ISNA(VLOOKUP(C18,TABLE1A,3,FALS E)),"",VLOOKUP(C18,TABLE1A,3,FALSE)) so to change it to check my "price override cell" first what do I need to do? any ideas "Fred Smith" wrote: See if the following will work for you. -- set up a "price override" cell. -- change your price formula to check this cell first. If there is use it, otherwise use your formula. This way the formula stays intact, but you can override it. Regards, Fred. "cjbarron5" wrote in message ... I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ok so now I have this formula
=IF(PRICEOVERRIDE!B20,PRICEOVERRIDE!B2,IF(ISNA(VL OOKUP(E18,TABLE1A,3,FALSE)),"",VLOOKUP(E18,TABLE1A ,3,FALSE))) but my invoice has 27 lines in it when I use the above formula in all 27 price spaces and enter only one item it shows up in all 27 spaces QTY ITEM# Description Price Shipping Extension 1 USEDCOMP USED COMPUTER $1.00 $1.00 $1.00 $- $1.00 $- extension contains the formula: =(N(F18)*B18)+G18 description contains the formula: =IF(ISNA(VLOOKUP(C18,TABLE1A,3,FALSE)),"",VLOOKUP( C18,TABLE1A,3,FALSE)) any ideas? thanks chris "cjbarron5" wrote: I have an Invoice sheet that has a formula in the price section.If I want to type a price in instead of using the price the formula uses how do I do that with out damaging the formula I have set? |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
well the formula
=IF(PRICEOVERRIDE!B20,PRICEOVERRIDE!B2,IF(ISNA(VL OOKUP(E19,TABLE1A,3,FALSE)),"",VLOOKUP(E19,TABLE1A ,3,FALSE))) works great for price override but my normal function does not the original formula was =IF(ISNA(VLOOKUP(E19,TABLE1A,3,FALSE)),"",VLOOKUP( E19,TABLE1A,3,FALSE)) and worked great but my priceoverride has made it not work!!!!!!!!HELP!!!!!!!!!! |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
OK, you want to check for the existance of a product first, before you check
for a price override. So change the If statement to: =IF(ISNA(VLOOKUP(E19,TABLE1A,3,FALSE)),"",IF(PRICE OVERRIDE!B20,PRICEOVERRIDE!B2,VLOOKUP(E19,TABLE1A ,3,FALSE)) Regards, Fred "cjbarron5" wrote in message ... well the formula =IF(PRICEOVERRIDE!B20,PRICEOVERRIDE!B2,IF(ISNA(VL OOKUP(E19,TABLE1A,3,FALSE)),"",VLOOKUP(E19,TABLE1A ,3,FALSE))) works great for price override but my normal function does not the original formula was =IF(ISNA(VLOOKUP(E19,TABLE1A,3,FALSE)),"",VLOOKUP( E19,TABLE1A,3,FALSE)) and worked great but my priceoverride has made it not work!!!!!!!!HELP!!!!!!!!!! |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ok I tryed the new formula and it doesnt seem to work its still showing in
all the other cells any more ideas???? thanks |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What does "doesnt seem to work" mean? What happens? What results do you get?
What does "still showing in all the other cells" mean? Regards, Fred. "cjbarron5" wrote in message ... ok I tryed the new formula and it doesnt seem to work its still showing in all the other cells any more ideas???? thanks |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
ok i found part of the problem but it still shows the price override amount
in all 27 lines even if there is no product listed |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|