Group text in Excel - excel

I have a table with 3 columns,
I want to group the Text rows to something like this :
Please help

If you have Excel365 then it would be easier to achieve your result. As per below screenshot put following formula to G2 cell.
=UNIQUE(C2:C5)
Then put below formula to E2 cell.
=TEXTJOIN(", ",TRUE,IF($C$2:$C$5=$G2,A$2:A$5,""))

Related

Does Advanced filter extract the data including formula?

I have a dataset which is contains formulas. While Create advanced filter in excel as a result it shown only the value if the data no formula is there.
I want the formula also. Please anyone help me to do so.
In order to show the formula of a cell, you might use the =formulaText() worksheet function, as you can see from the following screenshot:
Cell "D1" contains the formula "=1+1".
Cell "E1" contains the formula "=FormulaText(D1)".
Hereby the results:

Averaging cells in one column based on date of another column in Excel 2010

I have searched high and low on the internet and still can't find a solution to what seems to be a simple issue so I am here hoping someone will enlighten me.
I have a table(not pivot) in Excel 2010 and I need a formula that will calculate the average of a group of cells in column B based on the date in column A and display it in column C but only on the first line of the date(s).
Columns A and B are static. Only column C needs a formula.
Thanks in advance for any ideas.
Here is what I want the table to look like when calculated:
Solution 1 - using a helper pivot table
You can first use the data in Column A and B to make a pivot table such as the following, suppose the pivot table is located in Column F and G, change the value field settings of Sys to summarise the value filed by Average :
Then in cell C3, enter the following formula and drag it down:
=IF(A3=A2,"",VLOOKUP(A3,F:G,2,0))
Solution 2 - using array formula
In cell A3, enter the following formula and then press Ctrl+Shift+Enter upon finish, then drag the formula down:
=IF(A3=A2,"",AVERAGE(IFERROR(List_Sys/(List_Date=A3),"")))
Find attached :D I used Averageif function, and if to verify if any change in date. then just scrolled down.
Screenshot:
Try following formula-
=IF(COUNTIF($A$3:$A3,A3)=1,AVERAGEIF($A$3:$A$19,A3,$B$3:$B$19),"")

How could i arrange the following in excel

I have an excel sheet with the given date in Column A and B. I want to convert the same as shown on right side of the picture
If you wish to use formula approach, then please add this formula =IFERROR(INDEX($B$2:$B$14,SMALL(IF($D2=$A$2:$A$14,ROW($A$2:$A$14)-ROW($A$2)+1),COLUMN(A2))),"") in cell E2. When entering formula please use CTRL+SHIFT+ENTER combination, since this is array formula. After you confirmed formula, drag it across your area E2:H5.

Sum values in one column based on multiple conditions in one cell

So my sheet looks like this:
I need to sum the values based on text in the products column.
Can someone explain to me how this is done without using VBA?
Enter the following formula in Cell B2
=SUM(IF(ISNUMBER(FIND(","& E$1:E$5&",",","&A2&",")),F$1:F$5))
This is an array formula so commit it by pressing Ctrl+Shift+Enter. Drag/Copy down as required. See image for reference.
Got this from here.

Excel formula to define groups for unique items

Currently at my workplace, I am facing an issue of grouping items. As shown in the image, I need to group the first group of RIOs in a cabinet as 1 and the second group of RIOs in that same cabinet as 2. The process is the same for different cabinets.
Is there a way to get this done by using Excel formula? I don't mind creating extra columns for rough works. It should be noted though that the formula need to work in a table format.
Example:
Well, If I understood your problem correctly then following should help. (Using helper column)
In Cell C3 and Cell D3 write 1
Then in Cell C4 enter the following formula
=IF(B3=B4,C3,C3+1)
And in Cell D4 enter
=IF(C3=C4,IF(A3=A4,D3,D3+1),1)
drag/copy down both formulas as required. See image for reference.
Note : For this solution to work Category column should be sorted.

Resources