Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
503 views

Excel-VBA Named range row sum

I have the following code For i = 1 To DepRng.Rows.Count For j = 1 To DepRng.Columns.Count DepRng.Cells(i, j) = Application.Sum(KidsRng.Row(i)) //Does not work Next j Next i ...
3
votes
1answer
413 views

Excel - Create chart from range of cells while excluding null values?

I've got this Excel sheet which basically contains a lot of data. Now, this Excel sheet is updated dynamically via a macro that imports the data. So the data might change, meaning, some cells might be ...
3
votes
2answers
572 views

How to test whether any non-header cell in Excel file is bold or italic

We use an Excel sheet which contains some business logic (and so it is often edited by non-IT). Some C++ code is generated in VBA from the same sheet - silly, I know. I plan to write a bunch of unit ...
3
votes
1answer
1k views

How do I reference a cell within excel named range?

E.g. I have named A10 to A20 as Age, now how do I get Age[5] which is same as A14. I can write "=A14" but I did like to write "=Age$5" or something.
1
vote
2answers
126 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
92 views

Excel Delete row if in named range

I have a worksheet with protected cells. There's an 'add row' button and I need a 'delete row' button. HOWEVER, I only want the user to be able to delete the row if it is within a named range. ...
1
vote
1answer
244 views

How to locate and access named ranges (global, nd per-worksheet) using xlrd, Python?

The documentation for xlrd here http://www.python-excel.org/ mentions that it is now possible in latest version, but does not say how.
1
vote
1answer
149 views

Named Range Breaks Code

I have one workbook with several sheets. I populate the listboxes (pulling static data from cells) on the 2nd sheet, click a button and it runs fine. When I populate the listboxes with a named range, ...
1
vote
1answer
57 views

Alerting for incorrect cell values

My problem: I have two ranges R16 and R01. These ranges were set up by swiping each range and then renaming them in the upper left panel of the sheet. Each range requires users to fill in each cell ...
1
vote
1answer
870 views

Set Excel Named Ranges via C#?

I'm trying to replicate this Access VBA code using C#, but am unable to do so. Wondering if anyone else has tried this before and can help. ...
0
votes
2answers
81 views

In VBA, how to enumerate named range entries according to their position on the worksheet

I have named ranges arranged one under another in a worksheet. In the Initialize Event of a userform (that contains a listbox), I add entries to the listbox when each entry is a name of one named ...
0
votes
3answers
87 views

Excel - delete columns but keep named range

My aim is to have a macro which takes a week's worth of data, pastes the summary/total into another worksheet, then hides/deletes the week I just copied across (or moves it to a different sheet, I ...
0
votes
2answers
47 views

Get sheet name from Named Range

I have: Microsoft.Office.Interop.Excel.Workbook wb; Microsoft.Office.Interop.Excel.Name name; Is there any way to get the sheet name that the named range is on in the given wb, assuming I've gotten ...
0
votes
2answers
342 views

Creating Multiple Data Validation Lists Without Referring to Same Range EXCEL VBA

I am writing a Macro in excel VBA that creates a data validation list in a specified cell. The program then prompts the user for the cells which contain the contents of the data validation lists. The ...
0
votes
1answer
109 views

copy cells in a range to a column

i have MyRange = A1:C3 current values in the range are as below: A1=a, B1=d, C1=f A2=b, B2=e, C2="" A3=c, B3="", C3="" the blank cells in the range can vary. how can i copy (using vba) non-blank ...
0
votes
1answer
2k views

VBA named range offset

I am trying to write VBA code that will select a named range, copy it and paste it for a certain number of rows. What I need to know is how to select the range of cells corresponding to the ones ...
0
votes
1answer
596 views

Excel Named Range resolving to its actual target

This is a weird problem I'm seeing in Excel Say I have a named range MY_RANGE which points to cell $A$1 (or A1) If I then enter =MY_RANGE into cell A2 all looks good If I then try to edit cell A2 ...
0
votes
2answers
651 views

How do I reference a “subset” or cells in an Excel Named Range?

I have a named range in Excel (that was created do to making a Web Query in Excel)... how do I get the sum of just the "Amount" column? Example: This works: =SUM(MyRange) The problem is, that sums ...