excel-indirect

Create New Unique ID Based on Two Columns - Excel

|▌冷眼眸甩不掉的悲伤 提交于 2021-02-11 10:03:47
问题 I have a problem at work where we would take an old SKU number and replace it with a new one. Unfortunately, there are instances where the new SKU number replacing an old SKU number would eventually become an 'old' SKU itself and would be phased out. Below is an example. Old Sku New SKU 06223 34162 06223 34162 06553 01925 06557 19100 06557 19100 06573 11443 06573 11443 51095 06223 51095 06223 With the way I need it formatted for work, I need the three different SKU's to become 1 unique SKU,

Create New Unique ID Based on Two Columns - Excel

醉酒当歌 提交于 2021-02-11 10:02:33
问题 I have a problem at work where we would take an old SKU number and replace it with a new one. Unfortunately, there are instances where the new SKU number replacing an old SKU number would eventually become an 'old' SKU itself and would be phased out. Below is an example. Old Sku New SKU 06223 34162 06223 34162 06553 01925 06557 19100 06557 19100 06573 11443 06573 11443 51095 06223 51095 06223 With the way I need it formatted for work, I need the three different SKU's to become 1 unique SKU,

Returning cell values from other sheets by referencing sheet names from a list

こ雲淡風輕ζ 提交于 2021-02-08 14:44:03
问题 I have a spreadsheet with approx twenty different sheets named by stock ticker. Because these are templates, the information in each sheet is found in the same cells. For example, the EPS for the current year is always in cell A55 regardless of the sheet. I want to build a summary sheet that will pull data from the templates based on the tickers. So envision a summary sheet with tickers (also sheet names) down column A and formulas in columns B to reference the same position in each different

Excel Formula: Using INDIRECT to get same row number with named range causes #VALUE! error

南笙酒味 提交于 2020-07-10 04:34:12
问题 Greetings Stack Overflow denizens! I am having an issue trying to get a formula involving INDIRECT to behave itself in conjunction with INDEX. When i use specific row values, the array works fine, but when i try and use INDIRECT to get current row number i get a #VALUE! error. For example: I have this in cell R108, and it works as it should: =IF(OR(ISERROR(INDEX(MODEL,SMALL(IF(OWNERID=N108,ROW(OWNERID)-ROW(INDEX(OWNERID,1,1))+1),1))),N108=""),"",INDEX(MODEL,SMALL(IF(OWNERID=N108,ROW(OWNERID)

How can you sum the same cell across multiple worksheets by worksheet index number in excel?

若如初见. 提交于 2020-01-25 07:20:14
问题 I am trying to sum cell Y116 across all valid worksheets in my excel workbook. To help define the valid worksheets, I wrote a VBA function, SHEETNAME(number), that returns the name of the worksheet at the given worksheet index (number). I did this because the names and number of valid worksheets will never be constant, however the valid range will always start at the 3rd worksheet (i.e. SHEETNAME(3)) and will always end at the third from last worksheet (i.e. SHEETNAME(SHEETS()-2)) in my

Excel - Counting no of items in a different sheet between a certain range matching specific criteria

孤街醉人 提交于 2020-01-05 08:36:14
问题 I have been building up an excel sheet to interrogate a data set and produce a set of metrics. I'm aiming to make the process as expandable as possible. In the links are pictures of a simple mock up data set to illustrate what I'm trying to achieve, it contains a metrics sheet where I want to display the information and the data set sheet: and the The aim is to have the highlighted cell (D6) display the number of items in "Sheet2" that meet the criteria of Item Status "Open". I have managed

How to get for each value in one array column number in another array?

不打扰是莪最后的温柔 提交于 2019-12-24 12:19:24
问题 Please look the example sheet. The 'sheet1' is a gradually filled table. In column "A" some kind of ID for each entity. These identifiers are sometimes repeated. In the result I just want to know the appearance number of each ID. To solve this I created 'sheet2'. in 'sheet2' column 'A' list of unique values from 'sheet1'. Then with huge formula in cell 'sheet2!B2' I get all row numbers for each unique value from 'sheet1' separated by columns. And finally I want to get in 'sheet1' column

Dragging INDIRECT and

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-13 04:54:25
问题 I thought I would take you through my thinking as there may be a better way than using INDIRECT to achieve the desired result but if not then a solution with indirect would be very handy. I had a simple formula =SUMPRODUCT($E$10:$E20,J10:J20) Dragged across a great number of columns ending somewhere in the CC's However I found when I inserted a row it would change my 10 and $10 to 11 and $11, so i placed an indirect in there. =SUMPRODUCT(INDIRECT("$E$10:$E20"),INDIRECT("J10:J20")) I now

Cell identifier number

自古美人都是妖i 提交于 2019-12-12 04:16:24
问题 I need to use a SUM function over an Excel range, for example, =SUM(A12:A25) . Is there a way to store the numbers 12 and 25 in another two cells and use them in the SUM function? 回答1: Yes, For example you might put 12 in B1 and 25 in B2 and apply: =SUM(INDIRECT("A"&B1&":A"&B2)) INDIRECT: Returns the reference specified by a text string. References are immediately evaluated to display their contents. Use INDIRECT when you want to change the reference to a cell within a formula without

INDIRECT function to reference cell ranges of other worksheets

做~自己de王妃 提交于 2019-12-12 01:49:28
问题 I am struggling to deduce a way to make dynamic INDIRECT references to cell ranges on other worksheets. Would appreciate any suggestions, details are: The workbook includes 4 worksheets (Product1, Product2, Product3, Warehouses). The Warehouses sheet contains the following formula to populate an inventory list for each warehouse from the three product worksheets (derived from http://exceltactics.com/make-filtered-list-sub-arrays-excel-using-small/). This is the formula in cell B3: =IFERROR