excel-formula

How to average every nth column in Excel?

被刻印的时光 ゝ 提交于 2021-02-20 03:35:33
问题 I've looked around on Google for answer to this question, but most websites only show how to average or sum every nth row (although I imagine they're related). I've tried using various formulas I could find for columns, but I haven't been successful. (Admittedly, my Excel skills aren't very sophisticated.) I want to get the average of every 6th column in my dataset. There are a ton of columns that need averaging, so if there's some formula that could aid with this, that would be great! As an

Extract Top 5 Values for Each Group in a List without VBA

狂风中的少年 提交于 2021-02-18 19:36:33
问题 I would like to develop a formula to construct a table of the top 5 titles / values within multiple groups, preferably without VBA. I have attached an example. Since I am new to this forum and require need at least 10 reputation points to post images, I have uploaded a screenshot to: http://i.imgur.com/v1LAkYk.png * Thanks @Scott Craner for adding the image to the post! I have already discovered and reviewed the following thread: Extracting top 5 maximum values (based on group) in excel.

Extract Top 5 Values for Each Group in a List without VBA

橙三吉。 提交于 2021-02-18 19:36:33
问题 I would like to develop a formula to construct a table of the top 5 titles / values within multiple groups, preferably without VBA. I have attached an example. Since I am new to this forum and require need at least 10 reputation points to post images, I have uploaded a screenshot to: http://i.imgur.com/v1LAkYk.png * Thanks @Scott Craner for adding the image to the post! I have already discovered and reviewed the following thread: Extracting top 5 maximum values (based on group) in excel.

Display all matching values in one comma separated cell

北战南征 提交于 2021-02-18 15:42:10
问题 I have two columns of data in an Excel 2010 spreadsheet. In Column A is a category, and in Column B is a value. There will be multiple values in Column B for each unique category in Column A. What I want to achieve in a separate sheet is to display all of the values for each each unique category in one comma (or semi-colon etc) separated cell. For example, if my first sheet looks like this: ---------------------- | Category | Value | ---------------------- | Cat1 | Val A | | Cat1 | Val B | |

Horizontal vs Vertical array delimiters - International

假装没事ソ 提交于 2021-02-18 10:19:18
问题 Following up on an earlier question I had about horizontal vs vertical arrays, I have a question about it's respective delimiters. Problem definition: Hereby an example of an incorrect way of comparing two arrays: {=SUMPRODUCT(--({"Apple","Pear"}={"Apple","Lemon","Pear"}))} The correct way, in case of an English application countrycode would be: {=SUMPRODUCT(--({"Apple","Pear"}={"Apple";"Lemon";"Pear"}))} Within an English version (most likely more than just English) of Excel these delimiters

CONCATENATE rows with character for range in Excel

十年热恋 提交于 2021-02-17 05:42:05
问题 I have a pretty long list of numbers that I would like to concatenate for a regex like this: 2323 2352 3432 … 2323|2352|3432 Now, I can obviously use the CONCATENATE function, but it would still require me to enter each row individually like this: =CONCATENATE(A1, "|", A2, …) Is there any way to apply a range together with the splitting character? 回答1: Typically this is a job for TEXTJOIN, available in Excel 2019 and O365. =TEXTJOIN("|",,A1:A3) 来源: https://stackoverflow.com/questions/63050210

CONCATENATE rows with character for range in Excel

这一生的挚爱 提交于 2021-02-17 05:41:04
问题 I have a pretty long list of numbers that I would like to concatenate for a regex like this: 2323 2352 3432 … 2323|2352|3432 Now, I can obviously use the CONCATENATE function, but it would still require me to enter each row individually like this: =CONCATENATE(A1, "|", A2, …) Is there any way to apply a range together with the splitting character? 回答1: Typically this is a job for TEXTJOIN, available in Excel 2019 and O365. =TEXTJOIN("|",,A1:A3) 来源: https://stackoverflow.com/questions/63050210

How to COUNT between a date range if nested within another formula?

谁说胖子不能爱 提交于 2021-02-17 03:26:40
问题 I am trying to substitute '!!!!!!' for a formula to count the number of W in column P on sheet TRADE LOG between the dates of 01 Feb 2021 and 28 Feb 2021 in hardcoded format. This is the current formula : =IF(COUNTIFS('TRADE LOG'!P:P,"W",'TRADE LOG'!B:B,">="&DATE(2021,2,1),'TRADE LOG'!B:B,"<="&DATE(2021,2,28)),"!!!!!!","") Could anyone suggest what needs to be added in order to achieve this? To make this clearer, I want F16 in STATISTICS to count the number of W 's in sheet TRADE LOG column P

Extracting digits from a cell with varying char length

谁说我不能喝 提交于 2021-02-16 20:06:50
问题 I have a group of cells, the first of the string never changes, it is and always will (until the coder changes it) 20 characters (inc spaces). I then want to extract the 3 numbers (and in some cases 2) from the remaining sequence. The monthly cost is 2 silver, 1 copper and 40 iron. The monthly cost is 1 silver, 94 copper and 40 iron. The monthly cost is 1 silver and 75 copper. The monthly cost is 8 silver and 40 copper. The monthly cost is 1 silver. The monthly cost is 99 silver, 99 copper

Extracting digits from a cell with varying char length

时光总嘲笑我的痴心妄想 提交于 2021-02-16 20:06:35
问题 I have a group of cells, the first of the string never changes, it is and always will (until the coder changes it) 20 characters (inc spaces). I then want to extract the 3 numbers (and in some cases 2) from the remaining sequence. The monthly cost is 2 silver, 1 copper and 40 iron. The monthly cost is 1 silver, 94 copper and 40 iron. The monthly cost is 1 silver and 75 copper. The monthly cost is 8 silver and 40 copper. The monthly cost is 1 silver. The monthly cost is 99 silver, 99 copper