Forum Discussion

Raj27's avatar
Raj27
Occasional Contributor
8 years ago
Solved

Write to MS Excel DDT

Set DT_Sheet = DDT.ExcelDriver(InputFilePath,  "XYZ_DT", true)    While Not DT_Sheet.EOF()    DT_Sheet.Value("TestData") = "Test"         DT_Sheet.Next()     Wend   DDT.CloseDriver(DT_Sh...