Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have two fields that I have to look at and based on those fields either
apply a specific number or have it equal the calculation in another fields. Age (b2) SCr (b5) =IF(B269 AND B5<1, 1, B5) That doesn't work. Any advise or help would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try it like this:
=IF(AND(B269,B5<1),1,B5) -- Biff Microsoft Excel MVP "mellermj" wrote in message ... I have two fields that I have to look at and based on those fields either apply a specific number or have it equal the calculation in another fields. Age (b2) SCr (b5) =IF(B269 AND B5<1, 1, B5) That doesn't work. Any advise or help would be appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
try this ...... =IF(AND(B269,B5<1),1,B5) regards FSt1 "mellermj" wrote: I have two fields that I have to look at and based on those fields either apply a specific number or have it equal the calculation in another fields. Age (b2) SCr (b5) =IF(B269 AND B5<1, 1, B5) That doesn't work. Any advise or help would be appreciated. |
#4
![]() |
|||
|
|||
![]()
=IF(AND(B269, B5<1),1,B5)
Chris ------ Convert your Excel spreadsheet into an online calculator. http://www.spreadsheetconverter.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If statement for fields with text | Excel Discussion (Misc queries) | |||
If Statement based on blank fields | Excel Worksheet Functions | |||
Duplicate fields does not match up! If statement | Excel Worksheet Functions | |||
Duplicate fields does not match up! If statement | Excel Worksheet Functions | |||
Duplicate fields does not match up! If statement | Excel Worksheet Functions |