Reputation: 71
I linked Excel data to a ppt deck and I want to edit the format of that linked data in the ppt, while keeping the data from the Excel cell and not altering the formatting of the Excel cell itself.
I linked an Excel cell to a PowerPoint deck using:
Current Result:
In Excel: C2 = 800, is blue, with border, Calibri font
In PPT, after I linked to C2 to a textbox, I that textbox has the same value of 800, is blue, with border, Calibri font
Desired Result:
In Excel: C2 = 800, is blue, with border, Calibri font
In PPT, after I linked to C2 to a textbox, I want that textbox to have the same value of 800, be green, without border, Time New Roman font
I am open to all solutions ranging from clicking buttons to making a macro in VBA.
Upvotes: 0
Views: 21684
Reputation: 4913
Probably the most time-efficient method is to format the Excel sheet to look like the result you want in PowerPoint. Excel links in PowerPoint are OLE objects, which visually reproduces the original Excel file.
The alternative would be to write a macro to copy and paste data to the presentation, then reformat it. This would not be a link. You would have to remember to re-run the macro every time you updated the Excel data.
Upvotes: 1