The Excel-2007 tag is used for referencing the Excel Version 2007 spreadsheet application from Microsoft. The version independent Tag is "excel". If your question is about VBA then also tag it VBA. If it is about an Excel formula or worksheet function, then tag it worksheet-function.
0
votes
0answers
8 views
How to display 'Tooltip' for a Group (textbox + images) Assigned to Macro?
Context:
I have several groups that I've made in Excel 2007 that each consist of a textbox and image(s) and are each assigned to a macro. What I would like is upon a mouseover/hover of the group, it ...
-1
votes
0answers
26 views
EXCEL 2007 - Compare a cell value to a range of values containing comma delimited lists [closed]
I have two worksheets, but the there is really only 1 column in each worksheet that is giving me a headache.
Both Worksheet 1 & Worksheet 2 has a column E that each contains only 1 value, the ...
0
votes
1answer
28 views
Excel - how to calculate age from 'Age in Months'
If a person's age in months is 140 how could I calculate there age in Years and Months?
So for example I would want to see:
11 Years 8 Months
0
votes
0answers
30 views
Excel VBA - protection prevents code executing on one computer but not another
My Excel workbook applies protection to several of its sheets upon opening, as follows:
Private Sub Workbook_Open()
Sheet1.Protect Password:=PROTECTION_PASSWORD, UserInterfaceOnly:=True
...
0
votes
3answers
50 views
How do I count occurrences of a pattern of data in Excel?
I realized after manual scanning 90 records, that this was going to be painful and tedious unless I made use of automation.
I have this set of data, about 4000 records that occurs in a pattern that I ...
1
vote
2answers
35 views
Excel: Cell counts based conditions
I am again trapped in a situation where I can't figure how to do it.
Basically, here is replica of the table I need to work on.
A B C D E F ...
1
vote
2answers
39 views
Recorded macro does not work on chart object
I recorded the following macro :
Sheets("Rejets Techniques TGC").Select
ActiveSheet.ChartObjects("Graphique 1").Activate
ActiveChart.Axes(xlCategory).Select
ActiveChart.SeriesCollection(1).Values = ...
-3
votes
0answers
21 views
VBA Efficient way to refer to data stored in another file path
I'm looking for the most efficient way to refer to data in workbooks stored in various file paths.
Most of our spreadsheets have about 1000 cells that refer to data stored in spreadsheets in various ...
2
votes
1answer
28 views
Why does not field with custom function to get name recalculate?
I use a vba function to get cell name (taken from Retrieving Cell name in Excel)
Public Function CellName(oCell As Range) As Variant
Dim oName As Name
For Each oName In ThisWorkbook.Names
If ...
0
votes
1answer
29 views
excel .xlsb file slow when closing and saving after changed from .xlsm file
i have excel .xlsm file format with about 20000kb file size..i have a macro inside it but the macro runs ok and fast. the problems is it is very slow during opening and closing,taking about few ...
0
votes
0answers
18 views
MS Access Linked Excel Files Sometimes Open (Datasheet View), Sometimes Do Not Open
My company released a mandatory MS Office patch last month (March 2013) that has lowered the performance of MS Access. I am using Office 2007 and have several .ACCDB databases that have linked tables ...
0
votes
0answers
35 views
Automating tables creation with VBA code [closed]
Hi I have a challenge for the VBA savvy geniuses here. I am still a newbie hence here to seek your help.
I am automating processes and need a code to automate the tabulation of items in worksheets ...
0
votes
2answers
36 views
COUNTIF showing inconsistent behavior
I'm using the following formula to find a value in the 'CDS et al' spreadsheet:
=COUNTIF(A3,'CDS et al'!A:A)
It returns 0, which is incorrect because I know the value shows up in the A column once. ...
0
votes
1answer
36 views
Excel programming with vlookup or if statements
I am trying to take column a (5000 rows) and match against column b (138 rows) and when it finds a match in cell b will take cell c (on the same row) and print it in cell d for example
I have ...
0
votes
1answer
35 views
python win32com : Change Excel formula witout inputing value yourself
Is there a way to change a formula without inputing the new value yourself?
Example:
Données!$EX$68:$IN$68
should become
Données!$EY$68:$IN$68
I don't want to calculate myself EY comes after ...
2
votes
1answer
29 views
Excel 2007 Duplicate Check Wrongly Converting Hex as Exponent
I have a spreadsheet used to verify a long list of 8-digit hexadecimal numbers for duplicates.
It has two columns - one for the hexadecimal values and another where the following formula is used to ...
0
votes
1answer
23 views
Find 2 Blank Cells adjacent to each other in a range
I am trying to write some code to look for 2 cells that are both blank and adjacent to each other in Excel and having no luck.
so in a table like this -
|Title|Col 1|Col 2|Col 3|Col 4|Col 5|Col 6|
...
0
votes
2answers
37 views
Adding months together or working in base 12
I'm a teaching assistant for a school working with kids with special needs and I've been asked to produce a spreadsheet that can keep track of their reading ages and spelling ages as they progress ...
0
votes
1answer
14 views
Issue with Array in Vlookup [Excel 2007]
I have an issue with vlookup recently when trying to compare 2 tables.
it seems that no matter what i did the end result is always "#N/A"
My goal is to find out the if the overlapping entry in both ...
1
vote
1answer
22 views
why cannot filter records with ~ symbol in excel
I have a list of record and I want to filter out those records that contain "~6". The problem is....
I can only filter if it is "~(space)6" but not "~6". When I try to filter "~6", I get the same list ...
0
votes
1answer
32 views
Excel list, 2000 rows to 250 page templates
Unfortunately i am not a master of excel. I have 2000 rows of information that i must fill out manually. Then i use vlookup to sort them into sheets with a template that can be printed out. My problem ...
1
vote
1answer
19 views
CountIf and Subtotal
I have a series of data columnar that I am wanting to use a countif for visible cells only that have the value 1. I can do either formula with no problem, CountIF, or SubTotal for visible cells, ...
-2
votes
0answers
66 views
Adding Macro that fetches data from multiple sheets and populate in another sheet after comparison
I am new at Stackoverflow so please forgive me if you see anything wrong in my posting.
Basically i am web programmer but i am just new to Excel-VBA but stuck on writing a Macro in Excel-vba .. Here ...
1
vote
1answer
16 views
Comparing two text cells to get four outputs
I'm building up a checking sheet for my work for issuing of commemorative coins. In 'Column F' I have a if formula running that answers 'Yes' or 'No' to indicate if the employee is eligible to have a ...
-1
votes
1answer
30 views
Stop Save File event by using another command button
am very new in vb. I have an Excel file which is Auto Saving in intervals. Now I want to stop this Auto Saving Function by Using another Command Button... plz help me ... their is the Code ...
...
1
vote
1answer
35 views
How do I check for duplicate rows and do calculate on that rows in excel file?
I have one excel file which is having data like following
CUSIP Quantity Date Price
AF0 500000 5/6/2013 1
AE4 400000 5/6/2013 1.0825
AE4 500 5/6/2013 ...
0
votes
0answers
15 views
Automatically move data between tables on condition
I have an Excel 2007 spreadsheet titled "Generic". It has 3 sheets called "Sheet1", "Sheet2", and "Sheet3". Each sheet has a single table called "Table1", "Table2", and "Table3" respectively. The ...
0
votes
1answer
38 views
selection.MergeCells property changes the original selection in excel
I want to check if my selection contains MergeCells and if so I do not want to process that selection in excel.
But whenever I call selection.MergeCells the original selection changes and it wraps the ...
0
votes
2answers
68 views
Excel macro to fill a matrix with sums from cells across sheets with conditions
I have an excel workbook with on sheet for each day (not all consecutive days) , that looks like ExampleSheet1. All sheets contain an empty list events, each with a unique ID and a Name. If the event ...
0
votes
0answers
38 views
Date Filters and Group options do not appear
I am quite a new user, working on a pivot table with SQL Server Analysis Services on Windows Server 2003.
I am unable to filter my reports by date despite having Googled many websites for advice. A ...
0
votes
0answers
34 views
Unable to append rows in excel using POI api in java
I am trying to append rows to an existing excel using POI api following the steps mentioned below:
try {
lFout = new FileOutputStream(lOutputFileName);
lFin = new ...
1
vote
1answer
33 views
what is the value for second parameter for getdevicecaps function?
I am trying to get the physical margins of an active printer. But i am not sure what should i give the values for second parameter for GetDeviceCaps function. Can someone tell me what are the values ...
1
vote
1answer
42 views
Why does -1 Match Type Match return N/A?
Suppose I have this formula
=MATCH(16,{5;10;15;20;25},-1)
Why does it return N/A? I would expect it to return 4.
But What confuses me more is that when I change it to a Less than Match(1) it ...
1
vote
2answers
70 views
Excel multiple if function for 70 logical test
i'm about to use the if function in excel 2007 for these criteria:
if B1 = "A" then C1 = "1"
if B1 = "B" then C1 = "2"
if B1 = "C" then C1 = "3"
if B1 = "D" then C1 = "4"
.
.
.
.
if B1 = "BP" then C1 ...
-1
votes
0answers
24 views
How to deactive the previous action in vba while opening the excel
when i open the excel it perform the last action that means the action before close the excel(when open excel it perform sent_click() automatically without click the button).
Can any one help me how ...
0
votes
1answer
65 views
Comparing values in Excel between YTD Monthly reports
I am extracting Year To Date monthly reports on tickets and their statuses.
I have a report for Apri:
ID Status
123 Open
124 Closed
and another report in May:
ID Status
123 Closed
124 Closed
125 ...
-5
votes
2answers
61 views
How to active action in vba while opening the excel [duplicate]
i want to active particular cell using vba while opening the excel.
Can anyone guide me how to do it.
Thanks
Private Sub Send_Click()
Dim strURL As String
strURL = ...
0
votes
1answer
47 views
how to keep the first cell always active in excel using vba
How to keep the first cell always active when opening the excel sheet.
Can any one guide me to how to this.
This is my
code:
Private Sub Send_Click()
Dim strURL As String
...
1
vote
1answer
37 views
How to fill cells from sheet A with values from sheet B when ID matches (in Excel)?
Consider the following 2 sheets. Sheet AAA has a list of companies with an emptry column ROA. Sheet BBB has a ROA value for some of these companies.
Sheet AAA
A B
1 ID ROA
2 1
3 2
4 ...
0
votes
0answers
23 views
embed config file in excel xlsm
I was wondering if anyone has embedded a small config (csv essentially) file inside an xlsm and read from/written to it to save settings. Currently I use an external config file and Windows ini API ...
0
votes
0answers
42 views
How to add rows of data from matlab to existing excel spreadsheet (MATLAB)
I have an excel sheet 'myvalues.xlsx' cosisting of 200 rows 127 columns each. Is there any way to insert another set of 100 vectors to my excel sheet from matlab which will be placed in the 201th row ...
1
vote
1answer
50 views
How to keep variable amount of numbers after decimals
I am using Excel 2007. I have multiple data sets with random number of characters in each row. For example:
A1 1.60
A2 0.008
A3 0.900
A4 1.0
A5 0.56
A6 1.703
I need to make it into a ...
1
vote
3answers
30 views
How do I create URLs in Excel based on data in another cell?
Consider the following Excel sheet:
A B C
1 ASX:ANZ ANZ:ASX http://www.site.com/page?id=ANZ:ASX
2 DOW:1234 1234:DOW ...
0
votes
0answers
42 views
linking cells excel (not identical or in the same order)
I have two spreadsheets, one contains a matrix of objects positions the other contains the info of that person, they are not in the same order and the matrix needs to remain in the same order. The ...
2
votes
1answer
30 views
Compilation Error with small script
I'm trying to write a cls in Excel 2007, here's the code:
Dim JiraService As MSXML2.XMLHTTP60
Set JiraService = New MSXML2.XMLHTTP60
JiraService.Open "GET", "URL", False
...
1
vote
1answer
35 views
Using the Offset Function with dynamic Row number
Looking for a way to make this code work:
the idea is to paste the block of data dynamically underneath the last used cell of the sheet
Specifically I am lookimng for a way to do this dynamically ...
2
votes
2answers
62 views
Display, sort and filter numbers with multiple decimal in excel 2007
I'm using excel 2007.
I've a list of tasks (200-500) that I need to group in different category/section etc (multiple filters). Whole data is in excel table so I can apply Excel's build-in table ...
0
votes
1answer
51 views
Need help making the VBA Excel code better
I need help improving my code below as it is a total mess. The correction is just a stop gap for something much bigger that I am trying to achieve. In short what I want to do is to create a pivot like ...
0
votes
1answer
150 views
how to pass the active cell value to the URL in vba excel code
This is my code
Private Sub Send_Click()
Dim cell As Range, Rng As Range
Dim strURL As String
Set Rng = Selection
For Each cell In Rng
strURL = ...
0
votes
1answer
32 views
Excel - Add cell value from another sheet
I have 2 sheets
In the first sheet I have
Names and Countries
and in the another sheet I have Countries and Countries_id
I want to add all "Countries_id" into the first sheet into the appropriate ...
