검색결과 리스트
전체에 해당되는 글 276건
- 2019.08.06 [Excel VBA] 각 셀마다 파일 하이퍼 링크걸기
- 2019.08.05 영어 Daily 정리(Aug.19)
- 2019.07.01 영어 Daily 정리(July.19)
- 2019.06.10 영어 Daily 정리(June.19)
- 2019.06.03 더 오피스 - "The Office" Season 2 #1
- 2019.05.06 영어스터디 에서 유용한 표현들
- 2019.05.06 ToastMasters 에서 쓰이는 표현들
- 2019.05.03 每天中文 - 5月
- 2019.05.02 영어 Daily 정리(May.19)
- 2019.05.02 VLOOKUP 을 다중 조건으로 골라내기
글
[Excel VBA] 각 셀마다 파일 하이퍼 링크걸기
목적
: 각셀에 하이퍼 링크 파일을 걸어주기
실행결과
: 순환하면서 해당 셀의 값을 기초로 각 파일의 하이퍼 링크를 걸어준다.
코드
Sub hyperlinksub() Dim wb As Workbook Dim template_sheet, format_sheet, skill_sheet, jobdef_sheet As Worksheet Dim pre_file_name, file_name, job_title, skill_value, jfg_value, vp_file_check As String Dim template_row As Integer, template_col As Integer Dim i, j, k, skill_length, skill_competency, skill_description, tb_value, tb1_col, end_num As Integer Dim varTmp() As String Dim skillTmp() As String Set template_sht = Sheets("R&D") template_row = template_sht.UsedRange.Rows.Count template_col = template_sht.UsedRange.Columns.Count For i = 3 To template_row If Not IsEmpty(template_sht.Rows(i).Columns(8).Value) Then file_name = Mid(template_sht.Rows(i).Columns(8).Value, 5, 9) template_sht.Hyperlinks.Add Anchor:=template_sht.Rows(i).Columns(8), Address:="연구개발\" & file_name & ".xlsx" End If Next End Sub |
'Excel(엑셀) > Excel VBA' 카테고리의 다른 글
[Excel VBA] 특정 시트 출력하기 (0) | 2019.08.06 |
---|---|
[Excel VBA] 폴더내 모든 엑셀열어 시트 복사후 저장 (0) | 2019.08.06 |
[Excel VBA] 짝수/홀수만 진행하는 For문 (0) | 2019.04.15 |
[Excel VBA] 파일생성 및 문자열 특정부분추출 (0) | 2019.04.09 |
[Excel VBA] 문자열 합치기 (0) | 2019.03.15 |
글
영어 Daily 정리(Aug.19)
8/27(Tue)
Deductions 공제
donate 기부하다.
Pay slip 급여명세서
transparent 투명하게
VAT (value added tax) 부가가치세
section 구간
minimum earner 최저생활자
decision 결정
8/21(Wed)
in a stable manner 안정적으로
enforcing [법률등을] 집행하다/실시하다.
hindrance 방해
8/19(Mon)
pictorial photos 사진의(프로가 찍어준)
from the view of the company, 회사의 관점에서 본다면,
8/16(Fri)
National Liberation Day 광복절
have hostility to A ~에 반감을 가지다
Impose 도입하다.
average life expectancy 평균연령
figure 수치
Health conscious 건강을 의식하는
8/8(Thu)
accumulate 모으다. 축적하다.
drawback 결함
safety net 안전망
call it a day ~을 그만하기로 하다.
Let's call it a day 오늘은 이걸로 마치죠!
pay off 성공하다.
8/5(Mon)
washing machine 세탁기
drying machine 건조기
a recycling bin 분리수거함
receive 맞이하다.
chauffeur service 대리운전
'영어 > 매일 영어' 카테고리의 다른 글
영어 Daily 정리(Oct.19) (0) | 2019.10.01 |
---|---|
영어 Daily 정리(Sep.19) (0) | 2019.09.04 |
영어 Daily 정리(July.19) (0) | 2019.07.01 |
영어 Daily 정리(June.19) (0) | 2019.06.10 |
영어 Daily 정리(May.19) (0) | 2019.05.02 |