Tagged Questions
The worksheet tag has no wiki summary.
10
votes
5answers
4k views
Copying Excel Worksheets in POI
Does anyone know of a means to copy a worksheet from one workbook to another using POI? The Workbook class has a cloneSheet method, but there doesn't seem to be able to insert a cloned sheet into a ...
7
votes
1answer
345 views
How can I join Excel documents using PHPExcel?
I'm using PHPExcel to dynamically generate order receipts.
I'd like to be able to generate a "summary" Excel file, containing all the order receipts (one per worksheet).
Is there a way to "join" two ...
4
votes
3answers
580 views
Last save date in excel worksheet footer
I am using Excel 2007 with a workbook that has many sheets. I need to have the date when the worksheet was last saved - in the footer. I was able to find the following:
Private Sub ...
3
votes
4answers
185 views
How to delete excel worksheets from excel workbook in c#?
Let's say I have one workbook which is having 6 sheets as Sheet1, Sheet2, Sheet3, Sheet4, Sheet5, Sheet6.
So from here I want to delete Sheet1, Sheet2, Sheet3. Please help me how to delete?
3
votes
1answer
152 views
Change the background of Cells with C#
I'm developing an program using C# to manipulate an Excel document, and I'm using
Microsoft.Office.Interop.Excel._Worksheet worksheet;
When I insert something to a x,y cell I use :
...
3
votes
1answer
1k views
PHPExcel set same properties, content etc on multiple sheets at once
Is there anyway to set the same properties (colors, row height, alignments) and content (hear names) for all sheets at once with PHPExcel?
How?
Thank you.
3
votes
4answers
5k views
C#: Getting the number of rows/columns with ExcelPackage
I need to read and write data from an Excel spreadsheet. Is there a method to finding out how many rows/columns a certain worksheet has using ExcelPackage? I have the following code:
FileInfo newFile ...
2
votes
1answer
53 views
Making Excel Worksheet a Class Module member
I'm trying to create a class module to build some basic db functionality in a workbook. The problem I'm running into is attempting to add a worksheet as a class member. I keep getting "Invalid use of ...
2
votes
2answers
59 views
How to append Values to Excel Range
I have an Excel workbook which has 3 worksheets with a named range defined for address A1:F10 in each sheet and have some values.
I wanted to have a range defined and set all the 3 worksheet range ...
2
votes
0answers
155 views
Is it possible to create new worksheet and add data from file to it?
I have file what have two worksheets which I wish to use as templates.
In php I create new PHPExcel object and load data from first worksheet to it.
$objReader = new PHPExcel_Reader_Excel5();
...
2
votes
1answer
1k views
OpenXML sdk Modify a sheet in my Excel document
I create an empty template in excel.
I would like to open the template and edit the document but I do not know how to change the existing sheet.
That's the code:
using (SpreadsheetDocument xl = ...
2
votes
3answers
894 views
Can I export a SharePoint list to an Excel file subdivided into separate worksheets?
We have a SharePoint 2007 deployment which will have a substantially large document library. My client wants the ability to export this library to an Excel spreadsheet, but specifically wants the ...
2
votes
2answers
1k views
Excel - Worksheet_Activate Code for New Sheets
I have three questions about VBA and controlling/manipulating new windows.
I have several sheets set up.
Master | Worksheet1 | Worksheet2 | Notes | Work Orders | Contact Info
1) I have ...
2
votes
1answer
2k views
convert xml to excel with multiple worksheet
if I export the below xml to excel 2007...i am able to get the excel sheet correctly.
<Workbook>
<Worksheet >
<MyXml>
<New A="111" B="222" />
</MyXml>
<MyXml>
...
1
vote
2answers
124 views
VBA Code to Copy worksheets containing named ranges from source to destination workbook
I have 2 workbooks. A Source workbook and a destination workbook. They are completely same except for 1 worksheet which has the same name in both but different data (both contain around 30 sheets). ...
1
vote
1answer
50 views
Recalling sheet names for a while loop
I have imported xlrd etc. The main part of my code is then as follows:
for serie_diam in range(0,9):
namesheet = "Diamètre " + str(serie_diam)
#select(namesheet)
numLine = sh.row_values(3)
OK = 1
...
1
vote
3answers
68 views
difference between dates VBA
Hi I am trying to find out the difference between the system date and the date stored in the worksheet. IF the difference between them is > 30 days, the result is true, else result is false
Dim ...
1
vote
1answer
91 views
Microsoft Excel - How do you reference a data table column from another worksheet?
Microsoft Excel 2010 -
I have two worksheets, Sheet1 and Sheet2.
Both worksheets have data-tables on them, covering differents types of data - illustrated below.
<Worksheet "Sheet1">
...
1
vote
2answers
72 views
Displaying Excel Worksheet Count
Is there a formula to display the number of worksheets in a workbook in a single cell ?
Say I have 3 worksheets and I want to display the page number that the user is on for each page.
I want it to ...
1
vote
2answers
213 views
VBA Refer to worksheet vs chart sheet
I'm trying to write a small function that takes in a filepath (where the workbook was saved at), targetpath (where the pdf will be saved to), and a string of tab names (pipe (|) delimited) in excel.
...
1
vote
0answers
75 views
importing contents from google spreadsheets to MySql using php
I need to import the worksheets from google spreadsheets and store it in MySQL.I have tried the code available with zend_gdata_library,but i am getting lot of errors on it.
Can anybody help me to get ...
1
vote
0answers
132 views
Can't copy a Worksheet that contains a Chart using EPPLUS
I'm trying to copy a worksheet that contains a chart, but when I try to do it, my code fires a "package relationship with specified id does not exist for the source part" exception, what are possible ...
1
vote
3answers
296 views
Search multiple worksheets and copy all rows with a where column A is >0 to a specified worksheet
Greetings,
I've looked quite a bit for code to help me do this, and though I've found several pieces that hint around it, maybe it's my inexperience with vba, but I haven't been able to modify ...
1
vote
2answers
597 views
Programmatically alter an Excel sheets row height
How can I alter the row heights of all my non empty rows in my EXCEL sheet?
Thanks in advance,
w.
1
vote
1answer
2k views
Hyperlink to Existing Worksheet in actual Workbook
How can i add a Hyperlink to a specific Cell and adress it to a Worksheet in the excel file?
This is what i already got:
Cells(zeile, 1).Select
Worksheets(1).Hyperlinks.Add Anchor:=Selection, ...
1
vote
1answer
27 views
making a seperate table, based off a previous table, ommiting non value numbers
I am having trouble getting the right formula for what I am trying to do.
basically, I need to enter data into a table to submit to accounting. I take data from one table and put it into another ...
1
vote
2answers
482 views
calling excel worksheet function from excel cell
I have a set of user defined vba functions that sit in an excel module, which are then called from an excel spreadsheet... everything has worked fine at this point.
I've been asked to move the vba ...
1
vote
1answer
585 views
MS Excel - Macros for consolidating values from multiple sheets into a single sheet
Consider i have 4 workbooks with the following structure...
1. Main.xlsx
Name Jan Feb Mar
A
B
C
2. Jan.xlsx
Name Jan
A 3.3
B ...
1
vote
1answer
3k views
Excel copy worksheet
In Excel VBA (or if you could in C#, I'm using the Excels Object Library from .NET), how to copy a worksheet from one workbook to another sheet in another workbook. Basically, what I'm doing is ...
1
vote
4answers
6k views
excel vba: how to loop through a subset of worksheets
I know how to loop through all the worksheets in a workbook, and how to exit once I reach an 'end-flag' worksheet:
For Each ThisWorkSheet In Worksheets
If ThisWorkSheet.Name = "FlagEnd" Then Exit ...
1
vote
2answers
873 views
Getting “Invalid bracketing of name” error when i try to run query on excel sheet
In order to make some reports i need to parse some excel files. When i try to select records from sheet i get next error: Invalid bracketing of name '1. page$'.
Heres my code:
OleDbDataAdapter ...
1
vote
3answers
972 views
Copying multiple worksheets simultaneously to preserve chart references
I've created a two-worksheet template in Excel - the first sheet is for pretty charts, and the other sheet is for the data that drives those charts. I've written a vb.net 2005 app that can dump in ...
1
vote
1answer
136 views
Easiest and quickest way of Web enabling old VBA apps
Given an small Excel VBA app (single form, small amount of records saved in single worksheet) that runs quite happily locally on the workstation, what would be the easiest and quickest way of ...
0
votes
2answers
39 views
How to get a 'clean' list of excel worksheet tab names in R with RODBC?
I'm new to R and even newer to using it with Excel. I want to get a list of all the worksheet names (Notes,Weights,Lengths) in an .xls file. You can see what I'm trying below - the problem is that the ...
0
votes
0answers
15 views
Add a Worksheet using Zend to a Google Spreadsheet in PHP
How do I add a worksheet to a Google docs spreadsheet using Zend?
Thanks!
0
votes
1answer
43 views
Comparing Worksheet Name string and performing an action
Below is the code I have so far. I am trying to do the following:
Compare the "ICT number" to the name of worksheet and if that worksheet name contains the ICT number, even if it is mixed in with ...
0
votes
1answer
117 views
com exception HRESULT: 0x800A03EC
I write a c# program for copy sheet. I got the exception error(0x800A03EC) when I call WorkSheet.Copy method until 105 times.
This is my snippet code: using Microsoft.Office.Interop.Excel;
private ...
0
votes
0answers
83 views
Copy row if cells equal text
I have an excel worksheet (Payments) which I would like to run some code that looks for any cell(s) containing the word "overdue" and then copying that entire row to a new worksheet (Final)
Also if ...
0
votes
1answer
143 views
Excel macro parse data from multiple worksheets (with worksheet names)
I've searched around a bit, but haven't been able to find a solution to this exact issue. All the other threads about copying data from multiple worksheets that I was able to find were looking to ...
0
votes
1answer
217 views
Excel Macro: conditional cut and paste between workbooks
So I want a macro running in an Excel file ("input.xls") that is searching a column in another Excel file ("data.xls") for the value "1" (the only values in that columns are 1s and 0s). When it finds ...
0
votes
0answers
70 views
Adding excel worksheets at runtime based on a template
I want to add many sheets to a excel workbook based on template.
but i am unable to do that.
following is my code -
xlFile = new Excel.Application();
xlWorkBok = ...
0
votes
0answers
108 views
Open Microsoft Office Excel Worksheet in a browser
I am wondering a way to open Microsoft Office Excel Worksheet present on a network drive in browser by pointing to a URL. Right now it tries to download the file as zip file when trying to open the ...
0
votes
2answers
140 views
How do I determine the maximum number of excel sheets possible to create in a C# program?
I know that the only limit on excel sheets is system resources, but I was wondering if there was some way I could figure out that number in C#.
0
votes
2answers
202 views
moving from one csv worksheet to the next in a python script
I've been using excel to create .csv workesheets that I'd like to parse using python. Each worksheet is named after a shop (e.g worksheet 1: "Waitrose", worksheet 2: "Tesco", worksheet 3: "Asda") and ...
0
votes
1answer
110 views
Use Macro in excel to edit cell values in another table?
I have an Excel project which contains 3 worksheets, namely "Unhealthy Foods" "Healthy Foods" and "Meal"
The two food tables contain a list of foods along with their their fat, protein and ...
0
votes
0answers
150 views
VSTO: Drawing on top of Excel worksheet
I've written a bunch of handy Excel add-ins in C#, and everything works great. But the one thing I haven't been able to figure out is if it's possible to place graphics (bitmaps, shapes, whatever) on ...
0
votes
1answer
390 views
worksheet in c#
I am using c# to write to excel file and to color the particular cell.
I am using the code as:
Workbook wbook = new Workbook();
Worksheet sheet1 = wbook.Worksheets[0];
...
0
votes
0answers
52 views
How do I create daily graphs using VBA?
I need to create 1 graph per day with totals per hour..If each day could be on a (separate) dated sheet or file then that would be great! I am struggling to achieve this and thought it would be best ...
0
votes
0answers
43 views
I can't put each data set into each template of spreadsheet using rails
I have number of data sets on my database and want to export each data set on to each sheet of spreadsheet.
So, let's say there's 5 sets of data, I want them to be on 5 worksheets with a template, in ...
0
votes
2answers
509 views
C# excel right to left document
i created a new excel file with C#.
when i open the document all the worksheets are align right to left.
How can i align the worksheet/workbook/window to display left to right grammatically??
...