Is there a way for me to export a excel sheet with multiple columns of information into a formatted powerpoint?
I would like it so that a single row was its own slide and each column could be assigned a textbox? Is this even possible?
Related
I have an excel sheet with several textboxes. I need users be able to input data into the textbox, and have an information transfer to a cell on a different sheet. (i.e. textboxes in a form transfer their values to a table I can analyze.)
Any suggestions?
I need to add a column to a pivottable in, whose content does not change, using VBA in Excel 2013.
How can I add a column, that is not a calculated field?
I have one issue with SSRS reports.
i ll export the report with excel format. but unfartunatily excel page break empty sheet will created. how do i remove that empty excel sheet from SSRS 2008R2.EX: sheet1 contain data and sheet2 not contain data and sheet3 contain data. How do i remove the sheet2?
Thanks in adavnce
You may create new file and to change all info to it
I copied data from a callmanager. i want to use the data it displays in the spreadsheet which is hh:mm:ss. But in the input box in the top it shows other data (date and time which i think display the date and time of recording of the data). When I try to use to manipulate the hh:mm:ss in the spreadsheet it keeps using the data in te input box. How can I tell excel to use the data displayed in the spread sheet and remove the data in the input box?
thanks in advance!
I don't know of a specific method to do it in excel only, but what I've been using so far for instances like this is:
Copy the column having those values and paste into notepad,
Insert a new column in the worksheet and format it as Text,
Copy everything from the notepad and paste into that new column.
This might be a little awkward, but it works for me ^_^
I am trying to write an add-in for Powerpoint, the user should be able to select cells in an Excel worksheet and then go to the Powerpoint slide he would like to paste that table in, after starting the Add-in, a macro should create a table and copy cell by cell. Afterwards the macro will format the PowerPoint table according to our formatting guidelines. I am running into some issues now:
1) How can I go through the cells within a selected range in Excel, I tried to loop through the cells within the selected range, but neither this nor counting the rows/columns with in the selected range works (I am rather unfamiliar with Excel VBA)
2) What is the best way to copy data from Excel to Powerpoint? I have seen some suggestions that use a string array, that reads in all the data first; some users re-use one variable to copy the data and some do it directly from a XL to a PPT reference, what are the advantages of the different approaches?
Thanks a lot
s
For your first question, here is a snippet of code that works (yet, it depends on what you intend to do):
Dim C As Range
For Each C In Range("A1:A100")
'do stuff
Next C
For your second point, it depends on the results you expect :
a PowerPoint formatted array
an Excel Object embedded into PowerPoint
copy-paste the values inside the slide content
Once you have chosen, it's easy to find ressources on the web to do what you want.