Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
if customer bill is waived place 0 in the water bill columm, gal used must be
greater than 25,000 otherwise, the water bill is 0. For all other accounts, the billing rate varies based on the type of customer. billing rate is $3,2 &1.50 per thousand gallons used depending on the type of customer, there is a billing rate worksheet. I'm using formula =if(c2="Yes" or g2<25,000,0, vlookup(b2,page!b3:c5,2)*g2) is not working. Need help please. Thank you. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yes, you need help. With respect to the formula you posted, Excel doesn't
use "or" that way, and you can't include a comma in a number (Excel uses that to determine the end of the test). So try it this way: =if(or(c2="Yes",g2<25000),0,vlookup(b2,page!b3:c5, 2)*g2) If you need more help, post back with details. Regards, Fred. "vivian" wrote in message ... if customer bill is waived place 0 in the water bill columm, gal used must be greater than 25,000 otherwise, the water bill is 0. For all other accounts, the billing rate varies based on the type of customer. billing rate is $3,2 &1.50 per thousand gallons used depending on the type of customer, there is a billing rate worksheet. I'm using formula =if(c2="Yes" or g2<25,000,0, vlookup(b2,page!b3:c5,2)*g2) is not working. Need help please. Thank you. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
calculating a % attainment when base number is negative | Excel Discussion (Misc queries) | |||
how do I set up a validation rules with two data rules | Excel Worksheet Functions | |||
Formula for calculating Hydro bill | Excel Worksheet Functions | |||
In Excel- change the order of a name? Bill Gates to Gates, Bill | Excel Discussion (Misc queries) | |||
Calculating a bill using a graduated rate... | Excel Worksheet Functions |