Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do I write a formula that will return a '1' if an adjoining cells
contains a value between 1 - 7? Help please - many thanks. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Ean,
Try: =IF(AND(A1=1,A1<=7),1,0) -- Hope this helps "Eán" wrote: How do I write a formula that will return a '1' if an adjoining cells contains a value between 1 - 7? Help please - many thanks. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try
=IF(AND(A1=1,A1<=7),1,"") If this post helps click Yes --------------- Jacob Skaria "Eán" wrote: How do I write a formula that will return a '1' if an adjoining cells contains a value between 1 - 7? Help please - many thanks. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() =--AND(A1=1,A1<=7) Mike "Eán" wrote: How do I write a formula that will return a '1' if an adjoining cells contains a value between 1 - 7? Help please - many thanks. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Another one:
=(A1=1)*(A1<=7) Multiplying is like using AND. (Adding is like using OR) Eán wrote: How do I write a formula that will return a '1' if an adjoining cells contains a value between 1 - 7? Help please - many thanks. -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Employee Work Time - Don't Count Duplicates | Excel Worksheet Functions | |||
Count Employee Work Time - Don't Double-count Overlapping Apts. | Excel Worksheet Functions | |||
Excel 2000, count, sort a list & count totals? | Excel Worksheet Functions | |||
Count Intervals of 1 Numeric value in a Row and Return Count down Column | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |