![]() |
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. |
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 |
Quote:
Quote:
|
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. |
Quote:
|
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) |
Quote:
|
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]).
|
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. |
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. |
All times are GMT -7. The time now is 11:37 AM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.