Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can someone please tell me what I am missing here.
I use the followig function to concatenate two columns of dates. When I use the fill handle to autofill the function down the column, the values calculated in the first cell of the column are carried down the column -- without recalculating or updating for each individual iteration. I cannot seem to force the function to recalcuate or examine each iteration of the function independently? Any help appreciated. =================== Public Function OsteoDate(MyText) as String Dim FromDate FromDate = ActiveCell.Offset(0, 1).Text Dim ToDate ToDate = ActiveCell.Offset(0, 2).Text If MyText = "" Then 'Check to see if first date column is null OsteoDate = "on " & FromDate Else 'concatenate both dates together with "from" and "to" OsteoDate = "from " & FromDate & " to " & ToDate End If End Function |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Value Function not updating | Excel Worksheet Functions | |||
Custom Function not updating | Excel Worksheet Functions | |||
Custom Function not updating | Excel Worksheet Functions | |||
how can I use the NOW() function without it updating thetime? | Excel Worksheet Functions | |||
How can I use the NOW function and keep it from auto updating? | Excel Worksheet Functions |