Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Add data from Alteryx to slide in existing PowerPoint deck

EnglishManBob
5 - Atom

Is there a way to push data from an Aleryx workflow into an existing slide?

 

Currently I can do this using an internecine Excel file, but cannot do this with the output of a workflow.

 

I'm only interested in a basic table:

 

Q1Q2Q3Q4
0.150.170.190.22
1 REPLY 1
kelly_gilbert
13 - Pulsar

@EnglishManBob - yes, there are a couple of ways to do it, depending on what else is on the slide/in the deck.

 

Method 1 (easiest): you can recreate the whole slide using Alteryx reporting tools and then render it to a .pptx file (example here)

 

Method 2 (more complex): create a template file in PowerPoint, with placeholders for the various numbers (for example, your PowerPoint slide would have the table on it, and then you would have placeholders, like |1|, |2|, |3|, etc. in each cell. A PowerPoint file is just a zip file containing a bunch of .xml files, so you can:

  1. un-zip the template pptx
  2. Use Alteryx to read in the xml for the slides you want to update
  3. Replace the placeholders with data (e.g. replace "|1|" with the value of metric1)
  4. Output the modified xml file
  5. re-zip the template

(examples here and here)

Labels