#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default how do you?????????

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   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 33
Default how do you?????????

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
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



All times are GMT +1. The time now is 06:16 AM.

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

About Us

"It's about Microsoft Excel"