Files
armandarmand/task1/task1-ticket1/helloworld/browser/hello-etnet/Write_100DayMovingAverage.bas
louiscklaw 8719fe58b8 update,
2025-02-01 01:59:56 +08:00

18 lines
348 B
QBasic

Attribute VB_Name = "Write_100DayMovingAverage"
Option Explicit
Function run(row As Integer, content As String)
On Error GoTo eh
Worksheets(TARGET_SHEET).Range(COL_100_DAY_MOVING_AVERAGE & CStr(row)).Value = content
Done:
Exit Function
eh:
Debug.Print "Write_100DayMovingAverage"
Debug.Print row
Debug.Print content
End Function