티스토리 뷰
Sub DataLabelsFromRange() Dim DLRange As Range Dim Cht As Chart Dim i As Integer, Pts As Integer ' Specify chart Set Cht = ActiveSheet.ChartObjects(1).Chart ' Prompt for a range On Error Resume Next Set DLRange = Application.InputBox _ (prompt:="Range for data labels?", Type:=8) If DLRange Is Nothing Then Exit Sub On Error GoTo 0 ' Add data labels Cht.SeriesCollection(1).ApplyDataLabels _ Type:=xlDataLabelsShowValue, _ AutoText:=True, _ LegendKey:=False ' Loop through the Points, and set the data labels Pts = Cht.SeriesCollection(1).Points.Count For i = 1 To Pts 'Cht.SeriesCollection(1). _ Points(i).DataLabel.Text = DLRange(i) 'Use the statement below for formulas Cht.SeriesCollection(1).Points(i).DataLabel.Text = _ "=" & "'" & DLRange.Parent.Name & "'!" & _ DLRange(i).Address(ReferenceStyle:=xlR1C1) Next i End Sub Sub RemoveDataLabels() Dim Cht As Chart Dim x As Series ' Specify chart Set Cht = ActiveSheet.ChartObjects(1).Chart Cht.SeriesCollection(1).HasDataLabels = False End Sub |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 사용자 정의 함수
- 사용자 정의 함수 재계산
- Function Procesure
- Screenupdating
- vba
- 프로시저 작성 실전
- 차트 서식변경
- function함수 예외
- 개체
- inputbox
- 워크시트 함수 재계산
- ProtectStructure
- WorkSheet Sort
- bubble sort
- 적용 범위
- 원본 데이터
- 함수 재계산
- Option Compare Text
- Application.InputBox
- for each
- 참조
- 배열
- 함수 프로시저
- 사용자 정의 함수 사용 예
- comment.text
- Excel
- 차트 레이블 추가
- 프로시저 호출
- EnableCancelKey
- 강제 재계산
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함