![]() |
€uromeinke, FEJ. and Ghoulish Delight RULE!!! NA abides. |
![]() |
#41 | ||
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Quote:
Quote:
______________________ On a different Excel question: I am a keyboard fanatic, especially when it comes to Excel: I prefer to use my keyboard for as much as possible (and NOT using the mouse). If I am navigating a spreadsheet to a cell that already has data in it, is it possible to "click" in a cell (with information in it already) using just the keyboard. Obviously, I could just start typing, but that would overwrite what is already in the cell. Right now, the only way I know how to do this is to click with the mouse. Am I stuck using the mouse for this one detail? For as much as I live in Excel, this would certainly help my day.
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln |
||
![]() |
Submit to Quotes
![]() |
![]() |
#42 |
I Floop the Pig
|
F2
ETA: F2 also serves a similar purpose in Windows explorer. If you have a folder or file selected, F2 will bring you into filename editing mode (instead of having to do that click-and-wait thing I hate so much). ETA more: ctrl-u on a Mac
__________________
'He who receives an idea from me, receives instruction himself without lessening mine; as he who lights his taper at mine, receives light without darkening me.' -TJ Last edited by Ghoulish Delight : 01-07-2010 at 12:12 AM. |
![]() |
Submit to Quotes
![]() |
![]() |
#43 |
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Thank you - you are my hero!!!Thank you for this. It is for work, where I work on a PC. Excel on the Mac sucks weenie
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln |
![]() |
Submit to Quotes
![]() |
![]() |
#44 | |
.
Join Date: Feb 2005
Posts: 13,354
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Quote:
The advantage of the formula is that you are less likely to make a mechanical error than doing a repetitive task 13 times. But mostly it was with an eye towards this being something done more than once. If it is a one off then search and replace isn't much less efficient. |
|
![]() |
Submit to Quotes
![]() |
![]() |
#45 |
You broke your Ramadar!
|
My copy doesn't. Is there a special key I need to be hitting? And would it be cheating?
__________________
"Give the public everything you can give them, keep the place as clean as you can keep it, keep it friendly" - Walt Disney |
![]() |
Submit to Quotes
![]() |
![]() |
#46 | |
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Is there a way to enter a manual line break in a concatenate formula?
For example, if: Cell A1 = "Name" Cell B1 = "Address" Cell C1 = "City, ST Zip" What would I need to enter in the concatenate formula so that cell A2 looked like this (regardless of column width of course): Quote:
=CONCATENATE(A1,B1,C1) I tried looking through the help menu but couldn't find anything ETA: Never mind. I tried out this really cool thing called "Google" and it helped me find the answer: CHAR(10) The formula would be: =CONCATENATE(A1,CHAR(10),B1,CHAR(10),C1)
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln Last edited by Kevy Baby : 02-16-2010 at 06:39 PM. |
|
![]() |
Submit to Quotes
![]() |
![]() |
#47 | |
Kicking up my heels!
Join Date: Jan 2005
Location: The Silver State
Posts: 3,783
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Quote:
__________________
Nee Stell Thue |
|
![]() |
Submit to Quotes
![]() |
![]() |
#48 |
Chowder Head
Join Date: Jan 2005
Location: Yes
Posts: 18,500
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Okay, these two questions are a little different: is there a better way to accomplish the two tasks below?
1. Get a list of all entries in a column (in other words, if I have 50,000 records and column H has a listing by state, I want a list of the states covered in this list [obviously not all 50 states]).
__________________
The thing about quotes on the internet is that you cannot verify their validity.
- Abraham Lincoln Last edited by Kevy Baby : 03-22-2010 at 03:27 PM. Reason: Disabling smilies makes more sense in this post |
![]() |
Submit to Quotes
![]() |
![]() |
#49 |
.
Join Date: Feb 2005
Posts: 13,354
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
For the first one.
Look up pivot tables. As a simple example: 1. Make sure your state column has a column header (Such as "State") 2. Select Column H 3. Data > Pivot Table and Pivot Chart Report 4. Leave "Microsoft Office Excel list or database" and ""PivotTable" selected. 5. Click Next 6. PivotTable and Pivot Chart Wizard - Step 2 of 3 should show your Column H in the Range field ("$H:$H"). 7. Click Next 8. Provide a location where the data can go. Probably you should leave "New worksheet" selected. 9. Click "Layout" 10. Drag "State" into the Row section of the window that pops up. Then drag it into the Data section. 11. Click Ok. 12. Click Finish. On a new worksheet you should have a list of all the states in the column as well as the count in a separate row. If you want the data free from the pivot table, just copy the cells in the list and paste them to a new location. |
![]() |
Submit to Quotes
![]() |
![]() |
#50 |
.
Join Date: Feb 2005
Posts: 13,354
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
For the second one:
Assuming all you need is the original records but limited by date. 1. Where you would have put the =LEFT(G2,4) -- presumabely H2 -- put this formula instead: =IF(MID(G2,5,2)="04", "AAAAA", "ZZZZZ") 2. This formula says if the 5th and 6th character of G2 equals "04" populate the cell with "AAAAA" otherwise populate the cell with "ZZZZZ". Obviously the fill can be anything but AAAAA and ZZZZZ are likely unique making searching feasible. 3. Drag the formula down the entire column. 4. Sort the spreadsheet in ascending order by column H. 5. Search "ZZZZZ" to find the first non April row. 6. Select all the rows below that and delete them. Last edited by Alex : 03-22-2010 at 03:37 PM. |
![]() |
Submit to Quotes
![]() |