Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to write a VBA function that compares the numeric values in cell1
against the value is cell2 and cell 3, and reports "Yes" if cell1 is between cell2 and cell 3, and otherwise "No." Here is a cut & paste of the function I;ve written in PERSONAL.XLS (see below). WHen I enter =IsBetween(A1, B1,C1) in D1 with numeric values in A1, B1, and C1 I get a #NAME error in D1. How come? Function IsBetween(cell1, cell2, cell3) As String If cell1 cell2 Then If cell1 < cell3 Then IsBetween = "Yes" Else IsBetween = "No" End If ElseIf cell1 < cell2 Then If cell1 cell3 Then IsBetween = "Yes" Else IsBetween = "No" End If End Function Thanks. John Wirt |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Text "comparison" operator for "contains" used in an "IF" Function | Excel Worksheet Functions | |||
Office 2007 "go to special" shortcut function | Excel Discussion (Misc queries) | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
Writing "shapes" to disk file | Excel Programming | |||
"Small" Multi-Dimensional Array Slow Writing To Cell | Excel Programming |