The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
Kamila
2 years agoContributor
Can I use api.data.calculate to insert text?
Hi Team,
I wanted to insert a text to data cell (for example 'Add comment'). Is it possible to be done by using api.data.calculate?
This is how I see this:
Dim Comment As String = "Add comment"
api.data.calculate("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx=" & Comment)
Thanks a lot!
Hi Kamila
There is a api.Data.SetDataAttachmentText( ) function to use for setting text annotations
So something like this will work:
api.Data.SetDataAttachmentText("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx", False)The false prevent text accumulating if text already exists in the POV so can be toggled on or off
2 Replies
- MarkMeaderNew Contributor III
Hi Kamila
There is a api.Data.SetDataAttachmentText( ) function to use for setting text annotations
So something like this will work:
api.Data.SetDataAttachmentText("V#Annotation:A#xxx:F#xxx:O#xxx:I#xxx:U1#xxx:U2#xxx:U3#xxx:U4#xxx:U5#xxx:U6#xxx:U7#xxx:U8#xxx", False)The false prevent text accumulating if text already exists in the POV so can be toggled on or off
- KamilaContributor
Thank you Mark, much appreciated!
Related Content
- 8 months ago
- 4 months ago
- 1 year ago