엑셀 VBA 현재 날짜 및 시간표시 변수 설정
Excel VBA에서 현재 날짜 및 시간 변수를 설정할때 아래 방법으로 설정한다 Format(Date, "yyyy") '연도 4자리 Format(Date, "yy") ' 연도 2자리 Format(Date, "mm") '01~12월 Format(Date, "m") '1~12월 Format(Date, "dd") '01~31일 Format(Date, "d") '1~31일 Format(Time, "hh") '00~24시 Format(Time, "h") '0~24시 Format(Time, "nn") '01~60분 Format(Time, "n") '1~60분 Format(Time, "ss") '01~60초 Format(Time, "s") '1~60초
더보기