excel-formula

Array as criteria in Excels COUNTIFS function, mixing AND and OR [duplicate]

被刻印的时光 ゝ 提交于 2020-01-02 18:05:50
问题 This question already has answers here : Countif With Multiple OR Criteria (4 answers) Closed 5 years ago . I have been googling this for a while and can´t seem to get it to work. I use Excel 2010 and want to count rows on a mix of AND and OR operators. What I want to do is something like this COUNTIFS($A:$A,"string1" , $B:$B,"string2" , $C:$C,{"stringA","stringB","stringC"}) This means mixing both AND and OR operator in the COUNTIFS function. Col A and col B must match the string criteria

Excel - find nth match

喜夏-厌秋 提交于 2020-01-02 17:18:10
问题 I created a like to follow the inventory on an item. I'm looking to find "What's the next date of availability?" I found my answer with a index match function, but the problem is : For each orders, what's available to promise... when my Running Total is not covered by the next "stock Arrival" how to find the "2nd" best match (next arrival).. Maybe I'm overthinking this.. Here is my workbook : https://drive.google.com/open?id=0BwbUB7pydqnfemQwQW9JaFoxbGs Anyone is an Excel guru? 回答1: You can

Index/Match- Lookup 2nd Value if 1st Value is Blank

我是研究僧i 提交于 2020-01-02 09:59:33
问题 I was hoping to get some assistance in writing a formula in excel. I have a table that contains a list of employees and their cell phone number. However, the table is structured in such a way that there is a number of blank and duplicate rows. Essentially, I am hoping to create a new table without any duplicates and blanks by performing a lookup on the respective cell phone numbers. The problem is, when I do a standard Index/Match formula, the formula will grab just the first lookup value,

Index/Match- Lookup 2nd Value if 1st Value is Blank

断了今生、忘了曾经 提交于 2020-01-02 09:59:06
问题 I was hoping to get some assistance in writing a formula in excel. I have a table that contains a list of employees and their cell phone number. However, the table is structured in such a way that there is a number of blank and duplicate rows. Essentially, I am hoping to create a new table without any duplicates and blanks by performing a lookup on the respective cell phone numbers. The problem is, when I do a standard Index/Match formula, the formula will grab just the first lookup value,

Excel array countif formula

有些话、适合烂在心里 提交于 2020-01-02 07:39:39
问题 I want to use COUNTIF function to evaluate how many items out of 2,0,0,5 are greater than 2? In Countif function, first argument is range and second is criteria. I have tried the below formula. Even tried using Ctrl+Shift+Enter at the end to evaluate. But doesn't seem to work. =COUNTIF({"2","0","0","5"},">2") 回答1: COUNTIF doesn't accept array constants (as far as I know). Try this: =SUMPRODUCT(--({2,0,0,5}>2)) You could also create a countif-style formula like this (the combination ctrl+shift

How to create dropdown with multiple columns in excel

笑着哭i 提交于 2020-01-02 06:55:16
问题 ! Hi I am using Excel 2003. I need to add data validation to a column, it should display the two columns in the cell, when user selects, the 1st column value should be displayed in cell. Ex: Col1 Col2 IND India CHI China Column - display to select Column IND-India CHI-China after selecting CHI the China or CHI will be displayed in the cell. Is there any possibility to do the process in Excel. Thanks in advance for any help... 回答1: Go to Devloper tab - insert - active control- insert comobobox

Converting MS to Seconds

夙愿已清 提交于 2020-01-02 05:28:14
问题 I found this formula to use to turn MS into Seconds but it was written for Excel 2002 and i am using 2010. =CONCATENATE(TEXT(INT(B1/1000)/86400,"hh:mm:ss"),".",B1-(INT(B1/1000)*1000)) Here are a few examples of what I am trying to take from MS to Seconds 25188 59125 64092 19115 26416 I will be honest i am not very good with Excel formulas so any help would be great. I have taken a screen shot of the error that i am getting with the above formula. 回答1: It works fine in Excel 2010. You just can

SUM the result of dividing two cells (SUMPRODUCT but division instead)

偶尔善良 提交于 2020-01-02 00:42:28
问题 I'm looking to do the equivalent of SUMPRODUCT but with division. Is there a way to add the results from dividing two arrays? Example: Column A has the "life" of an asset in years (10, 20, 10) . Column B has the Value of the asset (10,000, 20,000, 20,000) . I want to add the result of (10,000/10) + (20,000/20) + (20,000/10) = 4,000 , but for the formula to be dynamic as I add rows with life and value. Thanks in advance. 回答1: Since the division is the inverse of the multiplication, you can use

Select the majority value

半世苍凉 提交于 2020-01-01 18:32:08
问题 I have the following Excel spreadsheet: A B C D 1 Sales Price Sales Price Sales Price 2 January February March 3 Year 01 50 70 90 4 Year 02 50 60 40 5 Year 03 60 70 30 6 Year 04 40 60 50 7 Year 05 50 40 25 8 9 Majority Sales Price: 50 70 90 In Rows 3-7 you see the sales price of a product from the months January-March in 5 years ( Year 01 - Year 05 ). In Row 9 I want to select the sales price which has the majority within each month. For example in January the sales price of 50 has the

Sum() Across Dynamic Number of Sheets

那年仲夏 提交于 2020-01-01 16:55:47
问题 Hello all and thanks for your help ahead of time, I have an excel sheet that is solely to take the summation of multiple sheets. Best and most simply put, the formula is something like =sum(Sheet1!A1,Sheet2!A1,Sheet3!A1,Sheet4!A1) . There are a few issues that complicate matters though. First off all, I do not know the number or order of the sheets to sum, nor do I know their name. This formula will be copied into ~150 other cells, so I need the summation to be dynamic instead of physically