Are PPT exports and Domo plugin visuals static?
I've been working with PPT exports of charts as well as the Domo plugin for PowerPoint. I got the idea that these are dynamic— they update when something in Domo updates— but my experimentation does not confirm this. So, is there a reasonable way to do that? The exports and the Domo plugin methods do not work. I'm looking into embedding with Domo Everywhere links, but have so far had no success. Am I correct about these being static, and is there a way to do this dynamically? Thank you.
Best Answer
-
You’re correct that standard PPT exports and the Domo plugin for PowerPoint are generally static. The Domo PowerPoint plugin itself does not support real-time updates. Once you insert a chart or a report into PowerPoint using the plugin, it does not automatically refresh the data. You would need to manually update the data by re-inserting the content from Domo.
You might consider Power BI integration or Domo API integration? Such as using Domo's REST API to fetch data from Domo and up date PowerPoint files programmatically.
Fetch from domo….fetch('https://api.domo.com/v1/datasets/{dataset_id}/data', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
// Process the data
});Update PowerPoint…
let pptx = new PptxGenJS();
let slide = pptx.addSlide();
slide.addText('Updated Chart Data', { x: 1, y: 1, fontSize: 18, color: '000000' });
// Add your chart or table data
pptx.writeFile('UpdatedChart.pptx');** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **1
Answers
-
You’re correct that standard PPT exports and the Domo plugin for PowerPoint are generally static. The Domo PowerPoint plugin itself does not support real-time updates. Once you insert a chart or a report into PowerPoint using the plugin, it does not automatically refresh the data. You would need to manually update the data by re-inserting the content from Domo.
You might consider Power BI integration or Domo API integration? Such as using Domo's REST API to fetch data from Domo and up date PowerPoint files programmatically.
Fetch from domo….fetch('https://api.domo.com/v1/datasets/{dataset_id}/data', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
// Process the data
});Update PowerPoint…
let pptx = new PptxGenJS();
let slide = pptx.addSlide();
slide.addText('Updated Chart Data', { x: 1, y: 1, fontSize: 18, color: '000000' });
// Add your chart or table data
pptx.writeFile('UpdatedChart.pptx');** Was this post helpful? Click Agree or Like below. **
** Did this solve your problem? Accept it as a solution! **1 -
Thank you. That's a clear answer.
0 -
The power point add-in is a little easier to do this in, you can just click "refresh all" and every card you've inserted into the power point will update with the latest data, but the only way to get the most up to date data in Domo is to view the dashboard in the browser.
Have you tried App Studio at all? That might be the level of customization you need to be able to create exactly what you're looking to display right in Domo so you don't need to take it into power point.0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 297 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive