Collating List From A Column
Jun 13, 2014
I have 3 columns sports played then a winners column then a runner up column.
what formula can I use to search through the winner and runner up columns for a particula team say Hinuera (would do it for every team involved in the competition) and then get 2 lists produced of what sports they won and what they were runners up in?
View 7 Replies
ADVERTISEMENT
Dec 3, 2008
If you have a spreadsheet where column A is a list of names, for each name there are several data types (listed in column B) some of the data types are repeated. Column C contains the percentage for each of the data tpes for the whole thing. There are 300+ names, each with several data types and most where at least one data type is repeated. How can i easily calculate the total percentage for each data type, for each name.
View 10 Replies
View Related
Dec 11, 2013
I have a spreadsheet with around 250 tabs, all with a small amount of information on laid out int he same format. My question is can i collate this into one long tab?
View 5 Replies
View Related
Aug 12, 2008
I have attached an excel spreadsheet. I am trying to automatically calculate the data in the boxes, (Without using a Pivot Table) but have tried a variety of ways with COUNTIF, COUNT(IF()) and SUMPRODUCT, with confusing results. I managed to get a query to work with SUMPRODUCT, however it does not accept Wildcards (*) in the text reference. I has spent over 8 hours, and even tinkered with Pivot Tables, all without success - The data I would like to extract in the columns for summary is: Department * Logs <7 Days old *Average Log Age * Logs >7 Days Old * Average Log Age *
View 6 Replies
View Related
May 23, 2012
I have come across a problem which delivers 0 as a result, I am doing sumifs which i never had a problem before with, however I am trying to include a cell which is variable by using the & in collating data, the raw file also contains that criteria in 1 column so I have no mismatch.
View 5 Replies
View Related
Apr 13, 2007
I have built a timsheet template which I intend to issue to c.140 personnel in my company to fill in for the month of May. On receipt of these timesheets, I will save them all in one, specified folder. I would then like to consolidate the total number of hours worked by adding cell N53 from each timesheet received. Is there any macro/ VB script which can add the contents of a particular cell (N53 in this case) from all the spreadsheets contained within a particular folder?
View 2 Replies
View Related
Apr 27, 2014
The link to my file is: [URL] ........
I am using excel 2003.
My query goes like this:
I need to find out "total lifted quantity"(i.e. the sum of 'first state lifted quantity'+'second state lifted quantity'+'third state lifted quantity') for each "state" for each "size" and each "grade".
However when I am applying a pivot table (as seen in Sheet1) it is not giving data in lucid form. I don't want to split the data for three states in three different tables (as seen in Sheet 4).
View 1 Replies
View Related
Mar 27, 2014
I am using Excel 2010. I need to copy a list from any Column on the right to the existing Column. See the sample file.
View 10 Replies
View Related
Oct 28, 2011
I'm looking for a way to get a unique list from a column to a data validation drop down list. Any fancy formula or vba script to create a UDF which. Does this?
View 5 Replies
View Related
Nov 26, 2007
1. I have a list of several items in sheet 1. Lets say 30-40 rows.
2. I do a frequently update of this list.
3. In sheet 2 I want to have a copy of this list in row 1 from column A to Column x (depends on how long the list in sheet 1 is.)
4. When I change the list in sheet 1, could be in first, middle or last row- mayby several rows. The list in sheet 2 should be updated
5. The update of sheet 2 should insert a new column on the right place, according to the list in sheet 1.
View 9 Replies
View Related
Feb 6, 2014
I am looking for a formula to search two columns.
1) The first column needs to be search to match a text string.
2) If the text string matchs, I need excel to evaluate the number in the second column and find the MIN value of all numbers associated with the text string.
So:
Joe 50
Jim 12
Joe 10
Rob 25
Jim 8
Rob 99
When searching for "Joe", the function would return 10. When searching for "Jim" the function would return 8. For "Rob", it would return "25".
View 4 Replies
View Related
Nov 29, 2007
1- I have a list full with numbers in a column. And I want to count how many digits are there in every cells. If digit of the number is less than 7, macro will complete it to 7 digits by adding 0 (zero) at the beginning of the number.
Example: A1 = 85468... A1 value is 5 < 7 in this case our number will be 0085468 (total 7 digits)
PS: sometime, when numbers start with 0 (zero), excel delete all 0 value at the beginning of the numbers. Macro should prevent this error.
2- I have another list with 2 columns which arranged in order. I mean:
A1=xx1, B1=xx2, A2=xx3, B2=xx4, A3=xx5, B3=xx6... etc. One is at A column, next number in B column.
My request is I want to make this list 1 column as arranged.
A1=xx1, A2= xx2, A3=xx3, A4=xx4... etc.
3- Macro will add a new line to the end of the above list with this format:
Z00001xxxx
Z00001 is static
xxxx is number of the full cells of A column plus 1. It will be 4 digits. If count is less than 4, it will complete it to 4 digits.
Example: if there are 15 cells in the list, last line will Z00010016 (15 + 1)
View 9 Replies
View Related
Mar 7, 2014
I'm trying to come up with a single formula to create a single column list from a table with blanks.
a
b
c
d
e
f
g
To
a
b
c
d
e
f
g
I know I've done this before but having trouble visualizing today.
View 14 Replies
View Related
Dec 11, 2013
If I have a table as noted below with the following assumptions:
- this table will likely grow
- the 'Include' column data will change based on external criteria/formulas, so the 'Include' column will not be sorted.
- Macros aren't an option as this sheet needs to be macro free.
A
B
C
1
Item
Calories
Include
[Code]...
How do I build a formula that I can place in a data validation drop down to only include 'Item's that have Yes indicated in the 'Include' column?
I've been researching this and found answers if the 'Include' column was sorted via offset, but I haven't found any to sift through when unsorted. I feel like there is a simple answer to this that I am missing. Here is the sheet --> ExampleSheet.xlsx
View 1 Replies
View Related
Aug 2, 2012
a macro to convert this;
a
b
c
d
[Code]...
Into this;
x
a
9
x
b
[Code]...
So far I have the following, but this is not quite right!
[QUOTE][Sub ConvertRange()
Dim targetRowNumber As Long
targetRowNumber = Selection.Rows(Selection.Rows.Count).Row + 2
Dim col1 As Variant
[Code]...
/QUOTE]#
View 7 Replies
View Related
Feb 26, 2013
If you open the attached file you'll notice that once clients are entered into the name field of the master worksheet that a new worksheet is created with their name based off a master template. What I need now is a way to create a "on-demand" "click" macro that will allow the user to select a month (Jan-Dec) based on my master tab and autocreate a summary worksheet named that month with each client listed on the Team Roster worksheet in the next available column of the worksheet that was just created.
macro generate a prompt to list the months to allow updates frequently.. so if the same month was run twice it would overwrite the previous.. the woman we're doing this for isn't very excel literate...
NOTE: As you enter names on the Team Roaster sheet it will autocreate tabs.. test file has MrExcel as the worksheet, if deleted the sheet will delete automatically.
View 1 Replies
View Related
Jan 23, 2014
I need the searchable list box to return data one column to the right of the "searched" column data.
This works mostly with Data Validation.
Named range "validationlist" with "=OFFSET(Choice!$AC$4,,,COUNTIF(Choice!$AC$4:$AC$14,"?*"))"
D9 has a drop down control. Enter the cell and type "br" and click the drop down arrow. Mouse to choose an item from the list box. If you chose "brown" , it will be entered in the cell. The returned item should be "banana" from the other column. How to do this?
Once working the control needs to be used across the row in more cells: E9, F9... all the way out to W9. And there has will be a Lookup to pull data from elsewhere above D9.
This worksheet ultimately needs to be uploaded to Skydrive and used as a collaborative worksheet as a 'web app'.
See attachment and formula output below.
[Code]............
searchableListBox-EF1.xlsx‎
View 2 Replies
View Related
Aug 24, 2008
I am trying to create a macro that converts a large list of Customer details from a vertical to horizontal format.
Each Customer has a unique sequential number running from 1 but the details are not always the same (e.g. in the below Phone does not always appear).
Current format is per the below:
Before
Column A Column B
Customer1
Address ABC
Phone 1234
Customer2
Amount 25
Address XYZ
Customer3
Amount 500
Address PQRS
Phone 567
Format afterwards should be
Customer AmountAddress 1Phone
1 ABC 1234
2 25 XYZ
3 500PQRS 567
View 4 Replies
View Related
Feb 5, 2010
I like to search in a columns(1) for specific words say “Don” and then write in another column (say column 6) as “one”. Then it should keep doing until the last cell in that column. It should do nothing if "Don" is not found.
How can I do it?
View 5 Replies
View Related
Dec 3, 2009
I have a list of IPs that have attacked a certain site over the past year. There are 3000 different IPs, so I would like to automate this. Is there a way to code a lookup on an IP to match its country of origin? ....
View 6 Replies
View Related
Jul 17, 2009
I know how to use array formulae to create a unique list, i.e.{=INDEX($G$1:$G$760,SMALL(IF(ROW($G$1:$G$760)=MATCH($G$1:$G$760,$G$1:$G$760,0),ROW($G$1:$G$760)),ROW()))}
however this is giving all the unique items from column G and I only want the unique items that have a non-zero value in column H as well. This would be the sumif of all instances that would have to be zero. I've tried to crack it and I've tried to search for solutions but so far no joy.
View 9 Replies
View Related
Apr 6, 2013
I have a workbook with a collumn full of football championships. As you know there are hundreds of different championships names. And i have a collumn with all of them but some are repeated over and over because this collumn is connected with values of profit/loss in another collumn. For example: Blue Square North (Collumn A1) and in collumn B1 1.75; then Blue Square North (Collum A2) and 2.98 (Collumn B2), and over and over...
So what i need is a formula that retrieves all unique and different names in a range collumn and the puts all the dfferent names in a new collumn (lets say C). Because what i intend to do then is to use vlookup to search for the championships one by one (through collumn C) and count the ones with profit and them loss by the name of each one.
So what i need is a way to retrive a list of the unique names in A and get them in C.
View 5 Replies
View Related
Nov 1, 2007
I have a list of items in a column. I would like to have a userform pop up with a list box (?) of all the items and I want to be able to select multiple items to perform an action on the row corresponding to the selected item.
I am thinking of other examples I have seen where there are two list boxes (?) and then arrow buttons between them. When you click the arrow the item moves from one list box to the other to see which have been selected.
I have never used list boxes before so if you have a link to some sample code that would be useful.
View 10 Replies
View Related
Feb 23, 2010
If anyone can please guide in creating Multiple Column List Box in form Amend for the data in Sheet2 (without having to change the format on the sheet) and delete or amend selected record.
One record is equal to Id,Batch,Task Name which is being looped ......
View 14 Replies
View Related
Jul 2, 2008
I am trying to creatre a formula which list numbers from rows to columns by deleting the vertical spaces i.e.
A1 lists empty
A2 lists 3
A3 lists empty
A4 lists 7
A5 lists 1
A6 lists empty
result:
Columns: B C D E F G
3 7 1
similar to stacking values into a nice hoz column and not noteing any spaces
View 10 Replies
View Related
May 1, 2008
I want it just to give me a list of every instance a certain word is used in a column, just like on the autofilter. But each value should in the cell beneath.
Basically I have a list of clients, now when using the autofilter I can select to see the cases from just that client.
But what I want is it to list all the clients relevant to certain months in a column.
View 9 Replies
View Related
Aug 4, 2008
I have just created a phone list of about 70 lines on a single A4 sheet
A B C D
Name No Name No
One of the PA's now wants to know if she deletes a Name and No from say column A & B
can I make it all reconfigure to eliminate the blank spce.
So basically names fill column A & B first then overflow onto Columns C & D.
I think a macro is the only way to go here but the PA isn't keen.
View 9 Replies
View Related
Jun 9, 2009
I have a list of strings in column A like this:
/Image in Filed/October 08/airline/arrival guides
/Image in Filed/October 08/movies/New Releases
/Image in Filed/October 08/tv/Escape
I need to put to the variable string which is after last "/" in the cell A#
in this case: arrival guides, New Releases, Escape
View 10 Replies
View Related
Aug 14, 2014
I have 2 columns, I need to consolidate one of the columns separated by a character.
For example, I need to turn this.........
Part# Part #2
1AMAC330221132609
1AMAC330222724908
1AMAC330222724977
1AMAC3303419188468
1AMAC33034F6ZZ-19C836A
1AMAC3305107-0442A
1AMAC330511911006
1AMAC3305119188473
1AMAC33051F0TZ-19C836-A
1AMAC33051FOTZ-19C836-C
into this..........
Part# Part #2
1AMAC330221132609*2724908*2724977
1AMAC3303419188468*F6ZZ-19C836A
1AMAC3305107-0442A*1911006*19188473*F0TZ-19C836-A*FOTZ-19C836-C
View 8 Replies
View Related
Mar 14, 2008
I have a list of people in column A and in B to E there are 4 numbers from 1 to 13. (Each person has 4 different numbers). In the next 24 columns are concatenations of these numbers in every order possible. On a separate sheet I have a list of concatenations of all possible combinations of numers 1 to 13 in groups of 4. e.g. 1234, 1235 etc. I have then counted how many times each of the concatnations from the first sheet appear. What I want to do is put the names of the people whoes concatentaions match the ones on the third sheet.
View 14 Replies
View Related