블로그
-
Sheet2 A열과 B열의 각 행을 비교하여 다른 것은 문자의 바탕을 적색으로 표시 하는 매크로
lastRow As Long Dim i As Long ' Set the worksheet Set ws = ThisWorkbook.Sheets("Sheet2") ' Find the last row with data in column A lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row ' Loop through each row For
blog.naver.com · 2023.08.18
-
[VBA TIP]B열의 문자값을 A행 홀수 아래에 각각 삽입 B열 제거
Long ' Find the last row in column A lastRowA = Cells(Rows.Count, 1).End(xlUp).Row ' Find the last row in column B lastRowB = Cells(Rows.Count, 2).End(xlUp).Row ' Iterate through each odd row in column A
blog.naver.com · 2023.06.09
-
[VBA TIP] Sheet3의 A1:A57 범위 내 각 셀에서 "DRAM:" 문구 앞의 모든 문자를 삭제
in column A lastRow = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row ' Loop through the range A1:A57 For i = 1 To 57 ' Get the value in column A Set cell = ws.Range("A" &.......
blog.naver.com · 2023.06.08
-
[HTML]표 만들기
우선 표는 가로인 행과 세로인 열을 이용해 만들어 지며 행(row)과 열(column)이 교차하면서 만들어 진 한 칸을 셀(cell)이라고 합니다.
blog.naver.com · 2023.06.19
-
패스트캠퍼스 캐시백 챌린지 32일차
. * 데이터베이스다루기 - 용어 -> 데이터베이스: 다수의 테이블을 저장하고 있는 곳 -> row, column(attribute) 이라는 table 로 정의해서 사용한
blog.naver.com · 2022.05.19
-
패스트캠퍼스 캐시백 챌린지 37일차
-> index, row, column 으로 구성되어 있다.
blog.naver.com · 2022.05.24
-
HTML, CSS
하지만 인식하게 하기 위해서는 clear; 를 삽입해주면 이를 인식함. [ flex ] display : flex; - flex-direction : row; // 좌우 일렬로 배열 row-reverse // 좌우 거꾸로 배열 column //상하 일렬로 배열 column-reverse //상하 거꾸로 배열 - justify-content : center; /
blog.naver.com · 2021.12.14
-
C++ Most Stones Removed with Same Row or Column - Union find
A stone can be removed if it shares either the same row or the same column as another stone that has Explanation: One way to remove 5 stones is as follows: Remove stone [2,2] because it shares the same row
blog.naver.com · 2021.07.13
-
데이터와 만나는 선형대수와 통계
하나의 행(row)은 하나의 표본(sample)을 의미하고 그 행의 각 열(column)들에 담긴 정보들은 그 특정 표본이 갖는 항목별 특징들(features)을 나타냅니다. 수학에서는 열벡터 표시법(column vector convention)을 원칙으로 하므로 데이터가 담긴 표를 수학에서는 여러 열벡터(column vector)가 왼쪽에서 오른쪽 방향으로
blog.naver.com · 2021.02.13
-
생활코딩 - Machine Learning 1 : 12. 표
데이터 산업에서 행과 열이라는 표현대신, 행(row)을 개체(instance), 관측치(observed value), 기록(record), 사례(example), 경우(case)로 표현하고 열(column)은 특성.......
blog.naver.com · 2020.09.14