스프레드시트에서 일정영역의 데이터 값의 원하는 기준에 부합하는지 확인하는 스크립트이다.
function validateMySpreadsheet(){
let cell = SpreadsheetApp.getActive().getRange('B1:B8'); // 영역설정
let rule = SpreadsheetApp.newDataValidation() // 유효성 검사 설정
.requireNumberBetween(1,800) // 허용 데이터 범위
.setAllowInvalid(false) // 허용 X
.setHelpText('Number Must be between 1 and 800') // 경고문구
.build(); // 실행
cell.setDataValidation(rule); // 셀에 적용
}
이상 빠이~~
'GAS' 카테고리의 다른 글
[GAS] cheerio를 이용한 Daum뉴스 크롤링 (0) | 2023.04.19 |
---|---|
[GAS] sheets데이터를 html 문서를 작성해보자 (0) | 2023.04.19 |
[GAS] 중복없는 로또번호 만들기 (0) | 2023.04.17 |
[GAS] 시트 통합 && 필터링 (0) | 2023.04.04 |
[GAS] 시트통합 매크로 (0) | 2023.04.03 |
댓글