slides.forEach(function(slide){
var xtables = (slide.getTables());
xtables.forEach(function(table){
var xcell = (table.getCell());
xcell.forEach(function(cell){
/* shape.getText().replaceAllText('{{title}}',title); */
/* shape.getText().replaceAllText('{{chart2}}',chart2); */
/* Total Raised */
cell.getText().replaceAllText('{{PTF}}',PTF);
cell.getText().replaceAllText('{{ATF}}',ATF);
cell.getText().replaceAllText('{{TFD}}',TFD);
});
//shape.getText().replaceAllText('{{category}}',category);
//shape.getText().replaceAllText('{{excerpt}}',excerpt);
});
})