The worksheet tag has no wiki summary.
-3
votes
0answers
20 views
Send data from CORBA server to connected clients [closed]
I am trying to create a worksheet for smart phones using the CORBA middleware and I want to know how a corba server can send data to clients connected to the server when it receives data from another ...
0
votes
1answer
22 views
Macro to use multiple IF statements to copy and paste to dif places of a dif worksheet
This particular macro, it's hard to accomplish what I want by taking different parts of different codes around the net, so I'm here for help!
Basically, I teach swimming and I want to track progress ...
0
votes
1answer
23 views
How to automate reading excel cells and skip the duplicates?
I'm working on this Excel report. It's a bit hard to explain without attaching an example here. So, I will try to put it in manually...Let's call this worksheet A:
ENV SYSTEM ACTION CRQ
...
1
vote
0answers
25 views
Configure working directory of Scala worksheet
I would like the working directory for Scala worksheet (and the Scala interpreter) to be the Eclipse project path rather than the Eclipse installation directory. How can I (non programmatically) ...
1
vote
1answer
40 views
Suppress display of a result in scala worksheet
I would like to suppress the output of helper variables in Scala worksheet:
val sqs = scen.rssis.toSeq.filter { case (ap,s) =>
s.exists(e => e.epoch > 1) }.sortBy { -_._2.length ...
1
vote
3answers
48 views
How to check for a specific text in excel worksheet name using VB.NET? (What is wrong in this code?)
I want to achieve following,
I have an excel file that contains worksheets with different names. Some of the sheets are named as A1, A2, B1, B2, C1, C2 etc.
If the sheet name contains "A" then ...
0
votes
1answer
42 views
How I can close a excel windows automatic?
I want to open and change a cell in excel by using C#
And it works but if i save the document I get a windows from excel -.- and everytime i must click on the button. See the picture.
Here is my ...
2
votes
2answers
109 views
EXCEL VBA, Changes groups of cells and Worksheet_Change event
I suspect this isn't all that complicated, but I'm not having much luck finding the right terms to Google... so I came to the experts!
So I'm trying to implement an Worksheet_Change event. It's ...
0
votes
0answers
51 views
VBA: Trapping custom class event in Worksheet module
I'm trying to hook into a custom class event from a worksheet module.
Essentially, I am hoping to use the worksheet as a UserForm (for the time being anyway).
Unfortunately, I can't remember if it is ...
0
votes
0answers
20 views
How to display a sub/function (compiled on VBA) in a worksheet cell, as a formula
I am developing a tool on VBA with several functions and subroutines, to calculate certains coefficients. At the moment, I created a window on which every func/sub is linked to an icon, required data ...
0
votes
1answer
139 views
Identifying last row in a inactive worksheet and copying data in last+1 row from active sheet
I want to know how can I identify the last row of a inactive sheet (without passing control to the inactive sheet) And then how to past data to the row number: 'LastRow+1' from the active sheet. And ...
0
votes
1answer
44 views
PHPExcel does not set the papersize correct in excel 2007
SOLVED
(Solution explained under the question)
I am trying to change the page setup for a XLSX file with PHPExcel.
But whenever i change the papersize, it results in a USER defined size with the ...
0
votes
2answers
132 views
VBA Worksheet change event bypass?
I'm fixing a spreadsheet for the company I'm working for over Easter, they have had someone who doesn't know what they are doing making a holiday spreadsheet. If you leave it as is, it works fine, but ...
0
votes
0answers
13 views
Move row based on field value
I have a series of rows that go from column A to N. I would like to move the row to a different worksheet depending on the value in column F. If the row is on the other worksheet, I would like to move ...
0
votes
2answers
117 views
How to delete an excel worksheet programmatically VB.NET
I tried following to permanently delete a worksheet from an excel workbook, however it is not working as expected,
CType(oWB1.Sheets("ABC"), Excel.Worksheet).Delete()
What is wrong here?
1
vote
2answers
69 views
copying first 3 columns from different worksheets to single files
I have a bunch of datasets with always the same worksheets.
Now I want to make a different file for each worksheet. I found some code that does just that: ...
1
vote
2answers
67 views
Pass the Protection Status of Excel Worksheet to a Cell
I'm curious as to whether it's possible to pass the protection status of an excel worksheet to a cell of that worksheet.
e.g.
Sheet1 is locked for editing...cell A1 would be programmed to say ...
0
votes
1answer
28 views
How To Download an Excel Object created with COM in MVC?
I have this COM object created:
using Microsoft.Office.Interop.Excel;
private Application app = null;
private Workbook workbook = null;
private Worksheet worksheet = null;
...
0
votes
1answer
472 views
Can I extract rows from one worksheet to another using criteria from one column using a formula?
I am trying to extract rows from this worksheet which have the same truck number (ex:4). My problem is that when I use the 'Advance Filter' it won't automatically update when I change the truck ...
1
vote
2answers
181 views
Iterate through excel worksheet names, when office not installed using vb6
I can read an excel sheet without excel being installed thanks to the ACE.OLEDB provider.
I can also iterate through the worksheets using the following, but it requires that office is installed if I'm ...
0
votes
1answer
162 views
Make excel worksheet mirror worksheet in external file
How can I make a worksheet in my excel file mirror exactly the sheet of a different (closed) worksheet.
Basically, I have around 5 files with a lot of data the gets consolidated into a single ...
1
vote
2answers
202 views
Excel won't show the workbooks worksheets
I have an Excel Workbook containing three worksheets. However all sheets seem to be hidden dispite that their visibility is set to xlSheetVisible (Found by looking at the worksheet properties in the ...
0
votes
2answers
516 views
How to conditionally merge/join excel worksheets?
+---------+---------+ +---------+--------------+ +---------+-------------+
+ country + widgets + + country + frammis rods + + country + comex gears +
+---------+---------+ ...
3
votes
2answers
516 views
Loop through Excel worksheets and save text into a TXT file with C#
I have most of the problem solved. I can loop through the worksheets, I can create the text file and write to it. The only problem I'm having is actually extracting the text or values from every ...
2
votes
2answers
319 views
Excel - Search through a column to find if text matches and count string
I want to add values from 1 worksheet to another.
The first worksheet ("November 2011") simply contains name & status, names are however duplicated and a percentage of a string needs to be added ...
0
votes
1answer
583 views
Excel - Search through a column to find if text matches and then add corresponding cell [closed]
I want to add values from 1 worksheet to another.
The first worksheet ("November 2011") simply contains name & price, names are however duplicated and the sum needs to be added on the second ...
0
votes
0answers
28 views
Copy specific rows from one worksheet to another [duplicate]
Possible Duplicate:
How to copy a line in excel using a specific word and pasting to another excel sheet?
This is my beginners attempt to write VBA code (I just wrote a macro to write ...
0
votes
1answer
468 views
VBA: Get/Download Excel file from server and copy contents into a new worksheet
For some reason the following Macro won't work:
Sub ExtractDataTest()
Dim FilePath$, Row&, Column&, Address$
'change constants & FilePath below to suit
...
1
vote
1answer
314 views
Excel VBA: Workbook_Open
I'm using Workbook_Open to call a userform when the application is opened, this is working fine. However I would like it to only run the first time it is opened.
I tried this and it work if I run the ...
1
vote
1answer
398 views
How to get Excel Worksheet from sheets when a sheetname has spaces programatically
I try to
var tempSheet = wrksheets[sheetName] as Worksheet;
where wrksheets is of type sheets
sheetName is "sheet name with spaces"
If sheetName has no space, it works fine, but if it ...
1
vote
2answers
138 views
Using playframework with the scala worksheet plugin for eclipse
I tried to use the worksheet plugin in eclipse in combination with a play project but it doesn't seem to work. Every import is marked as not being found.
Has anyone got this working, is there ...
2
votes
2answers
796 views
Excel VBA, code in worksheet not working
I have the following code in sheet1 (note - this code is in the wroksheet object, not the workbook object or a module):
Private Sub Worksheet_Change(ByVal Target As Range)
Dim r As Integer
r = ...
0
votes
3answers
300 views
IntelliJ IDEA 12.0 Scala worksheet errors under Standard User account but works under Administrator
When I try to evaluate Scala worksheet in IntelliJ IDEA 12.0 with latest Scala plugin (December 5 2012 version) under Standard User in Windows 7 (32) it says:
Cannot start process, the working ...
0
votes
0answers
337 views
Import multiple .CSV files in a folder into my open workbook in existing worksheet using VBA
Here's what I'm trying to do. I have a folder that has data files updated daily as .CSV. What i need to do is be able to clear the existing data in the file "ALL_FILES", compile all the new data form ...
1
vote
0answers
167 views
Moving WorkSheets from one Workbook to another and updating fomula (links)
I've solved this, tweeked the code a bit and now it works fine. I won't attempt to post the new code, as everytime I try I end up with bits of code above and below the code block.
We are ...
3
votes
1answer
284 views
Workbook With VBA Project and Worksheets Copied From One Another Shows Wrong Cell Values When You Press “Calculate Now”
I have a template workbook made up of identical worksheets which have been copied from one another. I have about 10 functions in a VBA Project which I use on each worksheet. I've then saved the ...
0
votes
0answers
256 views
excel automatically insert text after x amount of characters in cell
I have a long excel formula that exceeds the 255 character limit that excel allows in a single cell. I get around this by adding "&" after every 255th character so that the next parts of the ...
0
votes
1answer
177 views
Visual Basic - Select Random Excel Sheet and Random Cell
It has been a while since I've coded in Visual Basic, so I forgot much of what I knew when working with MS Excel. I am actually coding within the developer tab of MS Excel 2007.
I have an existing ...
0
votes
0answers
272 views
Excel file remains read only after being read
Currently I been working with the library Microsoft.Office.Interop.Excel to read an Excel file.
At the moment I am able to connect to my file and open it with the provider OleDbConnection, once I ...
0
votes
1answer
303 views
excel rows function: increase numbers sequentially in the same cell
I am using the ROWS function in an excel spreadsheet to auto increase numbers within text.
the formula i am using at the moment is this:
...
0
votes
0answers
58 views
Excel Chart Sheet Suddenly Renamed to Chart # [closed]
I have an excel workbook with many chart sheets. Recently the chart sheets are getting renamed to chart #. This only occurs for the chart sheets and not for any of the data and formula sheets. These ...
3
votes
1answer
96 views
Using Scala's worksheet, clarification needed [closed]
The following snippet compiles and runs fine
When using as part of worksheet, i see error
Why is this please?
0
votes
1answer
141 views
How can I capture the individual Excel worksheet ranges from a multiple sheet range reference string?
I have a string passed to a VBA sub, which is of the format "Sheet1:Sheet5!A1:D10", referring to a range across several worksheets in the same workbook (Sheet2, Sheet3 and Sheet4 are between Sheet1 ...
2
votes
1answer
472 views
VBA: Extract column until empty, repeat in next sheet
Dear Stack Overflow swarm.
In file "Prodcuts.xlmx" I have thousands of numerical values at column A at Worksheet "Contract1". Same file contains several other similar Worksheets with names ...
0
votes
0answers
670 views
Run Excel Macro from another Sheet with a twist
I have a very frustrating vba issue.
I have an an Excel Add-in called "SMF_Add-In" that pulls stock market historical data into excel in the form of a big array, like A1:G600. So I built a custom ...
1
vote
1answer
285 views
Fastest way to drop a DataSet into a worksheet
A rather higeisch dataset with 16000 x 12 entries needs to be dumped into a worksheet.
I use the following function now:
for (int r = 0; r < dt.Rows.Count; ++r)
{
for ...
0
votes
4answers
256 views
Sql queries in VBA code - how to comment after Sql string
I have some Sql queries inside VBA code, this is an example of a line of code:
strQry = strQry & Worksheets("Data").Cells(9, 7) & """, " & _
I need to add a comment at the end of this ...
1
vote
4answers
274 views
Excel Formula for dynamic columns
I'll try to make sense of this the best I can. I'm pretty horrible at making things clear. :) So...here it goes....
I have a spread sheet that is a list of seeds I have for growing peppers. Here are ...
2
votes
1answer
327 views
Convert all “Worksheet Objects” to images in powerpoint
Really not sure what stack site to place this on. Feel free to move it to the correct one. My question isn't really related to programming, but I have a ton of power points with these "Worksheet ...
0
votes
1answer
64 views
Copying Worksheet to Worksheet - how to copy only the value?
Sub Sample()
Dim wsI As Worksheet, wsO As Worksheet, ws2 As Worksheet
Dim LastRow As Long, i As Long, j As Long
Set wsI = Sheets("EC6")
Set wsO = Sheets("2")
LastRow = wsI.Range("A" & ...