excel-formula

Searching against a partial match in excel

∥☆過路亽.° 提交于 2020-03-15 07:19:43
问题 Tab-A contains a two columns. Column 1 is website domains, column 2 is filled with a formula that should output emails found in Tab-B: backpacks.com / FORMULA TO FIND EMAIL FROM TAB-B buy.bags.io / FORMULA TO FIND EMAIL FROM TAB-B shop.plasticbags.net / FORMULA TO FIND EMAIL FROM TAB-B bags.org / FORMULA TO FIND EMAIL FROM TAB-B Tab-B contains two columns. Column 1 is emails, column 2 is email domains: admin@backpacks.com / backpacks.com hi@bags.io / bags.io hello@plasticbags.net /

Get the last column number of a search criteria in a defined range (if values are not unique)

谁都会走 提交于 2020-03-05 06:06:32
问题 I have the following Excel spreadsheet: A B C D E F G H I 1 Search Criteria: Prod.B 2 Column: 2 3 Prod.A Prod.B Prod.B Prod.C Prod.C Prod.D 4 5 Currently I use the following formula in Cell C2 to get the column of the search criteria in Cell C1 in the Range D3:I3 . =MATCH(C1,D3:H3,0) All this works perfectly. However, as you can see with the formula above I get back the first column number in which the search criteria appears. What do I need to change in the formular to get the last column

SUMIFS where the “sum_range” column is unknown

牧云@^-^@ 提交于 2020-03-04 23:09:11
问题 I have a pile of data on Sheet1 I have a SUMIFS formula on Sheet2 The columns I am summing are named NETPERD1 , NETPERD2 , NETPERD3 ..... NETPERD12 I want to write the SUMIFS so that I can easily change which column I am summing. On Sheet2, in cell $C$4 , I will enter NETPERD1 or NETPERD2 etc. and I want my SUMIF to determine which column it should sum. I think I should be able to do this with IndexMatch but I can't get it to work. Here is my SUMIFS that works. I want to replace NETPERD1 with

Handle error in list DataValidation formula

孤街浪徒 提交于 2020-03-04 02:42:09
问题 I have a list DataValidation formula with depends on other column. OFFSET(DATA!A2;0;MATCH(A1;DATA!1:1;0)-1;COUNTA(OFFSET(DATA!A:A;0;MATCH(A1;DATA!1:1;0)-1))-1) When other column is empty the formula evaluates to an error (MATCH results in #N/A ) and excel warns about it with: "The source currently evaluates to an error. Do you want to continue?" When I accept the warning popup DataValidation results in empty list, which is fine for me. My goal is to create formula which will never evaluate to

Handle error in list DataValidation formula

我的梦境 提交于 2020-03-04 02:41:31
问题 I have a list DataValidation formula with depends on other column. OFFSET(DATA!A2;0;MATCH(A1;DATA!1:1;0)-1;COUNTA(OFFSET(DATA!A:A;0;MATCH(A1;DATA!1:1;0)-1))-1) When other column is empty the formula evaluates to an error (MATCH results in #N/A ) and excel warns about it with: "The source currently evaluates to an error. Do you want to continue?" When I accept the warning popup DataValidation results in empty list, which is fine for me. My goal is to create formula which will never evaluate to

Excel: Finding the right match from matrix “scheme”

女生的网名这么多〃 提交于 2020-02-25 06:48:08
问题 I am trying to "match" values or patterns from one sheet to another. I got like "matrix scheme" (the first pic) where I am looking for a certain pattern which is labeled as " _ " and "1". If there is a match ("1"), I should color it in red, or green when no match (" _ "). But that part is easy. As you can see there are 4 "cases" for now, and that is exactly what I want to have on another sheet (the second pic) as match. But I am getting only one match (from Column S ("XC0")) and empty spaces

Excel: Finding the right match from matrix “scheme”

给你一囗甜甜゛ 提交于 2020-02-25 06:46:09
问题 I am trying to "match" values or patterns from one sheet to another. I got like "matrix scheme" (the first pic) where I am looking for a certain pattern which is labeled as " _ " and "1". If there is a match ("1"), I should color it in red, or green when no match (" _ "). But that part is easy. As you can see there are 4 "cases" for now, and that is exactly what I want to have on another sheet (the second pic) as match. But I am getting only one match (from Column S ("XC0")) and empty spaces

Calculations on a date column formatted as text

房东的猫 提交于 2020-02-25 04:46:08
问题 I need to calculate a sum in one column based on a date range in another. =SUMIFS(Data!$A:$A,Data!$B:$B,">4/1/2014") The caveat is that the date column is being loaded as text by someone else (cannot control this). And worse, I cannot create another column that does something like =DATEVALUE($A1) because I can't expect this person to fill that formula down every time new data is added. My only thought is to apply a DATEVALUE to the whole column, possibly as an array formula or similar. 回答1:

Calculations on a date column formatted as text

你。 提交于 2020-02-25 04:45:29
问题 I need to calculate a sum in one column based on a date range in another. =SUMIFS(Data!$A:$A,Data!$B:$B,">4/1/2014") The caveat is that the date column is being loaded as text by someone else (cannot control this). And worse, I cannot create another column that does something like =DATEVALUE($A1) because I can't expect this person to fill that formula down every time new data is added. My only thought is to apply a DATEVALUE to the whole column, possibly as an array formula or similar. 回答1:

Is it possible to have array as an argument to INDIRECT(), so INDIRECT() returns array? [closed]

巧了我就是萌 提交于 2020-02-15 07:57:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Suppose, that I have a vector of cells A1:A5 , each with string that is an address of the other cell. What I want to do, is to have a function, that returns an array of values from these referenced cells . See the example - I want the formula to return 15 (it returns 1). In production setting, this vector is