Hello everyone. I would like to write a datatable in an Excel sheet using the “Write range” from the service integration. However, I would like to write this range starting from cell “A6”. Do you know how I can proceed?
A few details we cannot inspect.
In the newer versions we are usually working like this:
Synthesis.Sheet("MySheetName").Range("A6")
“Synthesis” is my sheet name. Doesn’t works with your proposal.
Maybe you can share some more details from your modelling
When Synthesis is your Sheetname did you try appending
.Range("A6")
Yes, but i have this error message :
Source: write range. Message: Global object named "Synthesis.Range(“A6”) not found
I use service integration. Not the classic activities.
Synthesis.Sheet("Sheet Name").Range("A6")
Source: write range. Message: Global object named "Synthesis.Range(“A6”) not found
write sheet name
we encountered two modes:
- descriptive using advanced editor
- wizard guided
currently we cannot fully derive
- the details to Synthesis
- the details to WorkBookFile
but know about the usage of Range(“A6”)
We would suggest to get familliar with the new approach Sheet(“XX”).Range(“A6”) syntax (e.g. explore also on newer Classic)
as the field is expecting a string we would also not be surprised when
"YourSheetName!A6"
would be accepted and work
However we recommend to get familar with the offered approaches / wizards from the ground
it’s work with :
Thanks !
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.