Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.excel.worksheetfunctions
|
|||
|
|||
![]()
I want to use a function probably the if function to check if say from cell
A1 to E1 to see if the value is less than .5 or no data, if true than give cell F1 a value of 1. How do I write this function? |
#2
![]()
Posted to microsoft.public.excel.newusers,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.excel.worksheetfunctions
|
|||
|
|||
![]()
Hi Richard
Do you want to test if every cell in A1:E1 is less than .5 or not have data Try this in F1 =IF(MAX(A1:E1)<0.5,1,"") -- Regards Ron de Bruin http://www.rondebruin.nl "Richard" wrote in message ... I want to use a function probably the if function to check if say from cell A1 to E1 to see if the value is less than .5 or no data, if true than give cell F1 a value of 1. How do I write this function? |
#3
![]()
Posted to microsoft.public.excel.newusers,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions,microsoft.public.excel.worksheetfunctions
|
|||
|
|||
![]()
=if(A1<.5,1,"")
if you are looking for all values to be less than .5 or blank =if(sum(countif(A1:E1,{"<.5",""}))=5,1,"") -- Regards, Tom Ogilvy "Richard" wrote in message ... I want to use a function probably the if function to check if say from cell A1 to E1 to see if the value is less than .5 or no data, if true than give cell F1 a value of 1. How do I write this function? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date & Time | New Users to Excel | |||
Hyperlinks using R[1]C[1] and offset function in its cell referenc | Excel Worksheet Functions | |||
Conversion | Excel Worksheet Functions | |||
HOW CAN I GET OFFICE 2003 EXCEL BASIC TO NEST FUNCTIONS LIKE EXCE. | Excel Worksheet Functions | |||
Find a Function to use accross different worksheets | Excel Worksheet Functions |