How to transfer multiple cells to write instead of one cell at a time? #761
Unanswered
ishmeets920
asked this question in
Q&A
Replies: 2 comments 5 replies
-
Check out this help article. It explains how to write to TM1 most efficiently with TM1py: https://cubewise-code.github.io/tm1py-tales/2021/write-with-tm1py.html |
Beta Was this translation helpful? Give feedback.
1 reply
-
Here is a sample with more dimensions. Does that help you? data = pd.DataFrame({
'd1': ['e1', 'e2', 'e4'],
'd2': ['e2', 'e3', 'e1'],
'd3': ['e1', 'e4', 'e2'],
'measure': ['value', 'value', 'value'],
'value': [11.5, 12.3, 7.5]
}) |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello All,
Hope all are doing good.
Usecase : Need to write the data from one cube to another
Note: It works but takes one cell to copy at one time. How can I fasten the write process?
Beta Was this translation helpful? Give feedback.
All reactions