Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
=IF(AND(F2=0,F2<=120000),(F2*'Data
Matrix'!B8%),OR(IF(AND(F2=120001,F2<=250000),(F2* 'Data Matrix'!B9%),OR(IF(AND(F2=250001,F2<=500000),(F2* 'Data Matrix'!B10%),OR(IF(AND(F2=500001,F2500001),(F2*' Data Matrix'!B11%),"InValid Data"))))))) Above formula returns True or False as value, however it should return a value (ie 1000). can any one help !!!! -- 1 |
#2
![]() |
|||
|
|||
![]()
try this idea starting from the highest number
=IF(B1=3,"a",IF(B1=2,"B","c")) -- Don Guillett SalesAid Software "World of Taz" wrote in message ... =IF(AND(F2=0,F2<=120000),(F2*'Data Matrix'!B8%),OR(IF(AND(F2=120001,F2<=250000),(F2* 'Data Matrix'!B9%),OR(IF(AND(F2=250001,F2<=500000),(F2* 'Data Matrix'!B10%),OR(IF(AND(F2=500001,F2500001),(F2*' Data Matrix'!B11%),"InValid Data"))))))) Above formula returns True or False as value, however it should return a value (ie 1000). can any one help !!!! -- 1 |
#3
![]() |
|||
|
|||
![]()
Another way:
Put 0 120001 250001 500001 in cells A8:A11 on the Data Matrix tab, then use this formula =if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2,0)),"Invalid",vlookup,F2,'Data Matrix'!A$8:b$11,2,0)) "World of Taz" wrote: =IF(AND(F2=0,F2<=120000),(F2*'Data Matrix'!B8%),OR(IF(AND(F2=120001,F2<=250000),(F2* 'Data Matrix'!B9%),OR(IF(AND(F2=250001,F2<=500000),(F2* 'Data Matrix'!B10%),OR(IF(AND(F2=500001,F2500001),(F2*' Data Matrix'!B11%),"InValid Data"))))))) Above formula returns True or False as value, however it should return a value (ie 1000). can any one help !!!! -- 1 |
#4
![]() |
|||
|
|||
![]()
Make that
=if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2,0)),"Invalid",f2*vlookup,F2,'Da ta Matrix'!A$8:b$11,2,0)) "Duke Carey" wrote: Another way: Put 0 120001 250001 500001 in cells A8:A11 on the Data Matrix tab, then use this formula =if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2,0)),"Invalid",vlookup,F2,'Data Matrix'!A$8:b$11,2,0)) "World of Taz" wrote: =IF(AND(F2=0,F2<=120000),(F2*'Data Matrix'!B8%),OR(IF(AND(F2=120001,F2<=250000),(F2* 'Data Matrix'!B9%),OR(IF(AND(F2=250001,F2<=500000),(F2* 'Data Matrix'!B10%),OR(IF(AND(F2=500001,F2500001),(F2*' Data Matrix'!B11%),"InValid Data"))))))) Above formula returns True or False as value, however it should return a value (ie 1000). can any one help !!!! -- 1 |
#5
![]() |
|||
|
|||
![]()
Way too tired to be offering advice:
The formula should be: =if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2)),"Invalid",f2*vlookup,F2,'Data Matrix'!A$8:b$11,2)) "Duke Carey" wrote: Make that =if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2,0)),"Invalid",f2*vlookup,F2,'Da ta Matrix'!A$8:b$11,2,0)) "Duke Carey" wrote: Another way: Put 0 120001 250001 500001 in cells A8:A11 on the Data Matrix tab, then use this formula =if(isna(vlookup,F2,'Data Matrix'!A$8:b$11,2,0)),"Invalid",vlookup,F2,'Data Matrix'!A$8:b$11,2,0)) "World of Taz" wrote: =IF(AND(F2=0,F2<=120000),(F2*'Data Matrix'!B8%),OR(IF(AND(F2=120001,F2<=250000),(F2* 'Data Matrix'!B9%),OR(IF(AND(F2=250001,F2<=500000),(F2* 'Data Matrix'!B10%),OR(IF(AND(F2=500001,F2500001),(F2*' Data Matrix'!B11%),"InValid Data"))))))) Above formula returns True or False as value, however it should return a value (ie 1000). can any one help !!!! -- 1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Huge problem with "if" formula's | Excel Discussion (Misc queries) | |||
Excel - return a picture or range rows as the result of a formula | Excel Worksheet Functions | |||
How do create a formula to evalute a # to return 1 of 4 conditions | Excel Worksheet Functions | |||
Using a Vlookup to return values in a data list? | Excel Worksheet Functions | |||
if the value of a cell in a range is not blank, then return the v. | Excel Worksheet Functions |