18 lines
345 B
QBasic
18 lines
345 B
QBasic
Attribute VB_Name = "Write_20DayMovingAverage"
|
|
Option Explicit
|
|
|
|
Function run(row As Integer, content As String)
|
|
On Error GoTo eh
|
|
Worksheets(TARGET_SHEET).Range(COL_20_DAY_MOVING_AVERAGE & CStr(row)).Value = content
|
|
|
|
Done:
|
|
Exit Function
|
|
|
|
eh:
|
|
Debug.Print "Write_20DayMovingAverage"
|
|
Debug.Print row
|
|
Debug.Print content
|
|
|
|
End Function
|
|
|