Excel Tips Tricks
Excel Tips Tricks
References
! ! ! ! ! Excel Annoyances - Curtis Frye Excel Hacks - OReilly http://www.exceltip.com (Joseph Rubin) http://exceltips.vitalnews.com/ (Allen Wyatt) Some Excel Basics as well as formula basics http://jura.wi.mit.edu/bio/education/bioinfo2005/ arrays/Excel_help.html
Mac vs. PC
! If you use a Mac there are a few difference from the PC. ! For instance, Preferences is under the menu Excel. ! Different key strokes may be necessary to do the same trick in a PC. ! The tricks I present here should work on both PC and Macs.
Data Validation
! Data validation guarantees that each data value you enter will be correct and accurate.
! There are many different ways to validate data. Heres how to present a list. ! Highlight the cells, column or rows that you want to validate. ! Go to Data and click on Validation. ! A popup menu will appear. Under Allow chose list. Under Source, type your comma delimited list. You can check whether or not you want the drop down menu. ! When you press okay, you should see a drop down menu of your list.
Sorting
! You have 5 columns of data you want to sort and Excel only allows you to sort 3.
! If you want to sort by columns A B C D E, select the whole spreadsheet, than sort by C D E, than A B. This will result in all five columns being sorted.
Sorting
! You have a column of Ids that are F1, F2, .F150 and would like to sort based on these ids. How?
! The only way to make Excel sort the proper way is to change your ids to F001, F002, etc. ! =LEFT(C1,1) & RIGHT("000" & RIGHT(C1,LEN(C1)-1),3)
! Using a macro you can export this file without the extra quotes.
Export Macro
Sub Export() Dim r As Range, c As Range Dim sTemp As String Open "c:\MyOutput.txt" For Output As #1 For Each r In Selection.Rows sTemp = "" For Each c In r.Cells sTemp = sTemp & c.Text & Chr(9) Next c 'Get rid of trailing tabs While Right(sTemp, 1) = Chr(9) sTemp = Left(sTemp, Len(sTemp) - 1) Wend Print #1, sTemp Next r Close #1 End Sub