1. 참고링크 [Bottom] [Top]
Contextures http://www.contextures.com
- Excel Tips and Techniques, Samples
The Spreadsheet Page http://j-walk.com/ss/
아이엑셀러 닷컴 http://www.iexceller.com/
김형백의 엑셀강좌 http://soongin.new21.net/
2. Excel 팁 [Bottom] [Top]
2.1. 문자열 결합 [Bottom] [Top]
문자열 연산자 사용 : & 연산자
문자열 함수 사용 : CONCATENATE() 함수
2.2. 드롭다운 항목 입력 [Bottom] [Top]
- 항목 값 직접 입력 방식
- 셀 참조 방식
2.3. VBA 팁 [Bottom] [Top]
- 작업 시간 관리 버튼 만들기
1 Private Sub TaskStartButton_Click() 2 3 ' 시작 시간이 없을 경우 4 If Cells(ActiveCell.Row, "A") = 0 Then 5 6 ' 시작 시간을 현재 시간으로 설정 7 Cells(ActiveCell.Row, "A").Value = Time 8 Cells(ActiveCell.Row, "A").Interior.Color = RGB(128, 192, 255) 9 10 End If 11 12 End Sub 13 14 Private Sub TaskEndButton_Click() 15 16 Dim TaskStart As Single 17 Dim TaskEnd As Single 18 19 ' 시작 시간이 있을 경우 20 If Cells(ActiveCell.Row, "A") <> 0 Then 21 22 ' 종료 시간을 현재 시간으로 설정 23 Cells(ActiveCell.Row, "B") = Time 24 25 TaskStart = Cells(ActiveCell.Row, "A").Value 26 TaskEnd = Cells(ActiveCell.Row, "B").Value 27 28 ' 소요 시간을 설정 29 Cells(ActiveCell.Row, "C").Value = Format(TaskEnd - TaskStart, "hh:mm:ss") 30 Cells(ActiveCell.Row, "C").Interior.Color = RGB(255, 128, 128) 31 32 Cells(ActiveCell.Row, "A").Interior.ColorIndex = xlColorIndexNone 33 34 End If 35 36 End Sub 37 38 Private Sub TaskTimeNowButton_Click() 39 40 Dim TaskStart As Single 41 42 '시작 시간이 있을 경우 43 If Cells(ActiveCell.Row, "A").Value <> 0 And Cells(ActiveCell.Row, "B").Value = 0 Then 44 45 TaskStart = Cells(ActiveCell.Row, "A") 46 47 ' 현재 소요 시간을 설정 48 Cells(ActiveCell.Row, "C") = Format(Time - TaskStart, "hh:mm:ss") 49 Cells(ActiveCell.Row, "C").Interior.Color = RGB(255, 255, 128) 50 51 End If 52 53 End Sub 54 55 Private Sub TaskTimeClearButton_Click() 56 57 ' 시작/종료/소요 시간을 초기화 A (데이터/서식 초기화) 58 Range(Cells(ActiveCell.Row, "A"), Cells(ActiveCell.Row, "C")).Clear 59 60 ' 시작/종료/소요 시간을 초기화 B (데이터 초기화, 글꼴 사이즈:9, 배경색 지움) 61 Range(Cells(ActiveCell.Row, "A"), Cells(ActiveCell.Row, "C")).Value = Null 62 Range(Cells(ActiveCell.Row, "A"), Cells(ActiveCell.Row, "C")).Font.Size = 9 63 Range(Cells(ActiveCell.Row, "A"), Cells(ActiveCell.Row, "C")).Interior.ColorIndex = xlColorIndexNone 64 65 End Sub
3. Outlook 2007 팁 [Bottom] [Top]
3.1. 빠른 검색 메세지 없애기 [Bottom] [Top]
빠른 검색 사용하겠냐는 메세지가 계속 나타날때 아래와 같이 설정하면 된다.
[도구] -> [옵션] -> [기타] -> [고급 옵션] -> [일반 설정] 에서 빠른 검색을 사용할지 묻는 메시지 표시 를 체크 해제한다.
