excel-formula

Sum up unique values in column per criteria in other column

杀马特。学长 韩版系。学妹 提交于 2021-01-28 02:25:19
问题 | A B ---|----------------------------------------- 1 | Total 1.900 ---|----------------------------------------- 2 | Product_A 700 3 | Product_A 700 ---|----------------------------------------- 4 | Product_B 300 ---|----------------------------------------- 5 | Product_C 200 6 | Product_C 200 ---|------------------------------------------ 7 | Product_D 700 8 | Product_D 700 9 | Prodcut_D 700 10 | In Cell B1 I want to sum the unique values in Column B per product in Column A . B1 = 700 + 300

Excel: Extract Numbers from Date Strings

房东的猫 提交于 2021-01-28 01:53:59
问题 I have several malformed date columns. I am trying to transform these columns into "month", "year", and "start_day" columns. Here is an example sample: January 13th, 2018 January 13th-14th 2018 January 5th-7th 2018 January 4th-8th 2018 December 9th-10th 2017 December 2nd-3rd 2017 December 2nd, 2017 December 2nd-3rd 2017 November 18th, 2017 November 18th-20th, 2017 November 17th-19th 2017 November 11th, 2017 November 11th-12th, 2017 November 11th-12th 2017 Note that sometimes there is a comma

Combining trim and if formula

ぐ巨炮叔叔 提交于 2021-01-27 18:31:31
问题 I am using a trim formula in excel: TRIM(LEFT(SUBSTITUTE(MID(M2,FIND("|",SUBSTITUTE(M2,"-","|",2))+1,LEN(M2)),"-",REPT(" ",LEN(M2))),LEN(M2))) this looks for a number in between a string of 4 numbers: 193449542-27309370502-9045796-169794419204 which works perfectly. I want to add an if= when a another cell on that same row contains either "bing" or "Adwords" and skip cells that contain it. 回答1: In H2 per the supplied image, =IF(NOT(SUM(COUNTIF(J2, "*"&{"bing","Adwords"}&"*"))), TRIM(LEFT

How to find a specific data of consecutive numbers inside an excel spreadsheet column

女生的网名这么多〃 提交于 2021-01-27 07:00:07
问题 Please help me to find sequence of numbers present in column of a spreadsheet. I have a large data of 1's and 0's in an excel column, I need to find the sequence of consecutive 1's and 0's in the column. For example, my excel column is given below: 0 0 1 1 0 0 1 0 1 0 0 1 1 0 1 1 1 0 0 Please assume this as some of my column data, I need to find where are the sequences of 1's and 0's present in the column. For example, I need to find: 0 0 1 1 0 1 This sequence of data in the column. Is there

How to find a specific data of consecutive numbers inside an excel spreadsheet column

妖精的绣舞 提交于 2021-01-27 06:55:25
问题 Please help me to find sequence of numbers present in column of a spreadsheet. I have a large data of 1's and 0's in an excel column, I need to find the sequence of consecutive 1's and 0's in the column. For example, my excel column is given below: 0 0 1 1 0 0 1 0 1 0 0 1 1 0 1 1 1 0 0 Please assume this as some of my column data, I need to find where are the sequences of 1's and 0's present in the column. For example, I need to find: 0 0 1 1 0 1 This sequence of data in the column. Is there

Excel: dynamically calculate range next to a searched up cell

こ雲淡風輕ζ 提交于 2021-01-25 17:36:18
问题 I am an occasional Excel user and stuck how to create a dynamic range. After looking up a text in a table, how can I calculate the range next to this cell, up to the next empty row? Not using VBA. Thanks for your help. 回答1: In H4 , formula copied down : =IFERROR(INDEX(INDEX(C:C,MATCH(F4,A:A,0)):C$1000,MATCH(G4,INDEX(B:B,MATCH(F4,A:A,0)):B$1000,0)),"") Should you want a dynamic range , Change C$1000 to INDEX(C:C,MATCH(9.9E+307,B:B) and Change B$1000 to INDEX(B:B,MATCH(9.9E+307,B:B)) Then The

Excel: dynamically calculate range next to a searched up cell

删除回忆录丶 提交于 2021-01-25 17:23:32
问题 I am an occasional Excel user and stuck how to create a dynamic range. After looking up a text in a table, how can I calculate the range next to this cell, up to the next empty row? Not using VBA. Thanks for your help. 回答1: In H4 , formula copied down : =IFERROR(INDEX(INDEX(C:C,MATCH(F4,A:A,0)):C$1000,MATCH(G4,INDEX(B:B,MATCH(F4,A:A,0)):B$1000,0)),"") Should you want a dynamic range , Change C$1000 to INDEX(C:C,MATCH(9.9E+307,B:B) and Change B$1000 to INDEX(B:B,MATCH(9.9E+307,B:B)) Then The

How can I pull any cells with a value greater than a number?

时光怂恿深爱的人放手 提交于 2021-01-25 09:15:37
问题 I asked a similar question to this here but I realized the >=1400 can be either before or after my "x". I'm trying to look at the number of users who are on screens larger than 1400. I have my Excel sheet, and tried doing an IF statement, but because of the "x" in the middle, it's not working properly and is instead just pulling all of the cells, even the ones with screen sizes less than 1400. I want to be able to pull all cells with Screen Resolution values larger than 1400 on either the

How can I pull any cells with a value greater than a number?

☆樱花仙子☆ 提交于 2021-01-25 09:11:42
问题 I asked a similar question to this here but I realized the >=1400 can be either before or after my "x". I'm trying to look at the number of users who are on screens larger than 1400. I have my Excel sheet, and tried doing an IF statement, but because of the "x" in the middle, it's not working properly and is instead just pulling all of the cells, even the ones with screen sizes less than 1400. I want to be able to pull all cells with Screen Resolution values larger than 1400 on either the

How can I pull any cells with a value greater than a number?

拈花ヽ惹草 提交于 2021-01-25 09:10:49
问题 I asked a similar question to this here but I realized the >=1400 can be either before or after my "x". I'm trying to look at the number of users who are on screens larger than 1400. I have my Excel sheet, and tried doing an IF statement, but because of the "x" in the middle, it's not working properly and is instead just pulling all of the cells, even the ones with screen sizes less than 1400. I want to be able to pull all cells with Screen Resolution values larger than 1400 on either the