A named range is used in Microsoft Excel as a text reference to a cell or to a range of cells

learn more… | top users | synonyms

-1
votes
0answers
63 views

Copying two dimensional named range from Excel into C# [closed]

I'll preface by saying my C# is still at a very rudimentary level. To give some background, I'm in the financial industry and work with VBA based financial models. I am currently in the process of ...
2
votes
3answers
183 views

In Excel 2007, how can I SUMIFS indices of multiple columns from a named range?

I am analysing library statistics relating to loans made by particular user categories. The loan data forms the named range LoansToApril2013. Excel 2007 is quite happy for me to use an index range ...
0
votes
1answer
47 views

copy cell values of named range in one sheet to same cell address of another named range in another sheet

Is it possible to copy the values of a named range in one sheet and paste them in the same cell location of another sheet? For example, I have named range "old_desk_1" in sheet1!A24:A25 and named ...
0
votes
0answers
59 views

name v/s namelocal vba [closed]

Can someone explain the difference between Name & NameLocal property of Name Class along with a sample code. I went through the documentation but still not clear with concept.
-2
votes
1answer
136 views

Excel VBA Nested For Each loops using named ranges

Has anyone found using nested For Each Loops given the named-ranges a hindrance? Here is a situation I am attempting to make it work, thinking that since named ranges can be helpful (for me) to know ...
0
votes
1answer
104 views

excel named range copy from sheet to sheet

I have an Excel question, I am wondering if there is an easy way to set up a clone or copy of a named range in one worksheet to another worksheet in the same workbook. I need this to be done ...
0
votes
0answers
62 views

Dynamic expanding range for excel template

I am an excel user at the most basic level with a programming background who has been put on a nightmare project. Here is what I need to produce: Multi-page excel sheet which will be converted to ...
0
votes
2answers
203 views

Unable to query named range on sheet with spaces in name in Excel

I have a workbook with multiple sheets, and each sheet has the same set of named ranges (IE they are scoped to the sheet, not workbook). I want to query based on a named range on any of the sheets. ...
0
votes
0answers
77 views

vba code review, need to make code better [closed]

Can someone please help me make my code better. The code is create a report from excel generated via Oracle db. I have code that I am repeating to add rows to pivot table and to turn sub-total off as ...
0
votes
1answer
126 views

loop through names and delete those not matching specified pattern

I have a Excel workbook in which I import sheets from several other workbooks and then merge the data from these into an "overview" sheet. I am fairly new to vba so this task has taken quite some ...
0
votes
1answer
262 views

using conditional named range in excel

Let me try this again, I've been searching the web and can't seem to find anything. What i'm trying to do is in excel have a bunc of named range list conditional based on a value of another cell. ...
0
votes
1answer
147 views

VBA End if user selcted cell is not within a series of named ranges

I am having trouble with a bit of Select Case. I have my program working with named ranges. I want it to End if the select case is not in a series of named ranges. Here is my code that is running ...
1
vote
3answers
543 views

Referencing Dynamic Named Range in Excel Formula

I have a table in Excel with column headings that correspond to part of a dynamic named range elsewhere in my workbook. For example, I have these column headings: "10", "20", etc., and these dynamic ...
3
votes
3answers
279 views

Excel VBA - Any performance benefits between const string range or define names for ranges?

G'Day, I have a question more towards helping me understand on more about how Excel VBA can effectively manage defined ranges that have been declared in one place in order to execute data well. Just ...
1
vote
1answer
151 views

Chart doesn't update when adding new rows to an existing Excel table (not without having to use named ranges)

I'm really new to the use of closedXMl and Excel too(at least for this purpose) so sorry if I'm asking silly questions. I know that closedXML doesn't support charts yet so the only thing that came to ...
0
votes
1answer
198 views

Dynamic hyperlink in Excel with named range

I have searched for a solution and I believe what I want to do is possible (or maybe it is not), but I can’t seem to make it work. An outline of the problem is as follows. I have some data in column ...
0
votes
1answer
131 views

Excel OFFSET function error when using TREND in reference

Consider an Excel sheet with the following values: A B -------- 1| 1 5 2| 2 8 3| 3 11 Entering the array formula =TREND(B1:B3,A1:A3,A1:A3) in cells C1:C3 returns {5;8;11}, as expected. ...
0
votes
1answer
92 views

Excel formula with named range

I have a question about formulas, it´s not an easy one, I hope someone can solve it. Table looks like this Idx Val Rslt 1 1 3 1 2 3 1 3 3 2 11 13 2 12 13 2 13 13 Named range ...
5
votes
1answer
539 views

Get a Named Range by String in Excel Workbook when Name is duplicated

To elaborate, let's say I have two named ranges in my workbook. Both named ranges have the same Name (let's say "myName"), but one is scoped to Sheet1 and the other is scoped to the Workbook. Given ...
0
votes
1answer
112 views

create an Excel Named Range that goes until a condition is met

I would like to create several Named Ranges in Excel that collect values in each column until the cell in a different row is blank. So for instance I have a Named Range called Weeks and the range is ...
0
votes
1answer
1k views

getRange with named range google spreadsheet using scripts

Can the getRange be used to have a named range instead of an area? When I seem to do it, it says the argument must be a range. For example, Instead of: getRange("A4:E7"); The area of A4:E7 ...
0
votes
1answer
260 views

How to get named range for a particular cell from excel using python

i need to get "name a range" value entered for a particular cell. i entered "name a range" value for (A4,B4) cell in excel,to read cell value we use sh.cell(row,col) but how to get name range value ...
0
votes
0answers
83 views

How to get the “absolut” formula of a range in Interop Excel?

I would like to compare two formula using C# and Excel Interop. The formula are with Named Ranges. One time the ranges are named by me, the other one is named by the app's user. The problem is that ...
1
vote
2answers
966 views

VBA Excel: Rename columns for easy referencing

I am writing a script that transfers data from Excel cells to different word tables. So far, I am doing it like that: wordDoc.Bookmarks("Editor").Range.Text = Sheets("Product Eval").Range("E" ...
0
votes
2answers
139 views

Excel VB: add Cell to existing Name

I'm trying to add a Cell to an existing Name via VB. My best Attempt looks like this: Tabelle1.Names("delCase").RefersTo = Tabelle1.Names("delCase").RefersTo + ";" + Target.Address But this ...
1
vote
2answers
1k views

how to get the value of a defined name in another workbook, using vba for excel

I have several workbooks containing calculations and I am making an "automatic overview" combining the data in all those sheets. To find the data I use named ranges. These work fine. However there is ...
0
votes
0answers
70 views

Resizing NamedRange throws a ControlNotFoundException

I am programming an Excel 2010 document with Visual Studio (C#). The Problem that I have is: Everytime I want to move/resize a NamedRange it throws a ControlNotFoundException. My question is: Why? I ...
1
vote
0answers
60 views

Named Ranges deleted on update

I have an excel file which I'm using as my backend (I have no control over this choice) and I've created my named ranges. I'm using OLEDB to connect to the sheets from my application in VB.Net. ...
0
votes
0answers
298 views

Use Excel Table Column in ComboBox Input Range property

I have an Excel worksheet with a combo box on Sheet1 that is populated via its Input Range property from a Dynamic Named Range on Sheet2. It works fine and no VBA is required. My data on Sheet2 is ...
0
votes
1answer
284 views

Named range in Excel/VSTO being returned even after it's been 'deleted' in Excel

I'm using VSTO (on Visual Studio 2008 due to a client request) to create Named ranges on single cells, which are then saved to the workbook and subsequently read when the application restarts. If I ...
3
votes
1answer
869 views

How to Move a NamedRange in Excel - VSTO not VBA

I've trawled the web and according to the documentation there doesn't appear to be a method to move a NamedRange: ...
1
vote
1answer
180 views

IE8 excel download invalidates chart data series references to named ranges

To recreate this problem: Create an Excel workbook (.xlsx). I'm using Excel 2010, but I'm not sure that matters. Create a named range. Create a chart that refers to the named range for its data ...
2
votes
2answers
2k 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). ...
0
votes
2answers
248 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
558 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 ...
1
vote
1answer
763 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
3answers
2k views

Get sheet name from a named range's Name object

I have: Microsoft.Office.Interop.Excel.Workbook wb; Microsoft.Office.Interop.Excel.Name name; Is there any way to get the worksheet name that the named range is on in the given workbook, assuming ...
0
votes
2answers
972 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 ...
3
votes
1answer
3k 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 ...
0
votes
1answer
209 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 ...
6
votes
3answers
2k 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
2answers
1k 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 ...
1
vote
1answer
636 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
234 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
80 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 ...
8
votes
1answer
10k 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
1answer
3k 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
1answer
5k 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 ...
1
vote
1answer
685 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
1k 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 ...