Last active
May 16, 2020 18:33
-
-
Save vkostyanetsky/ef44bbb18f36a1c51826a5d0b4f3960e to your computer and use it in GitHub Desktop.
ValueTable to SpreadsheetDocument
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&AtServerNoContext | |
Function ValueTableToSpreadsheetDocument(ValueTable) | |
Builder = New ReportBuilder; | |
Builder.DataSource = New DataSourceDescription(ValueTable); | |
SpreadsheetDocument = New SpreadsheetDocument; | |
Builder.Put(SpreadsheetDocument); | |
Return SpreadsheetDocument; | |
EndFunction // ValueTableToSpreadsheetDocument() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
У меня на сайте есть заметка про эту функцию.