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

18 lines
345 B
QBasic

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