excel_write_cell
문서 · macOS · Windows
효과: 쓰기. 상태: 조건부 제공.
‘조건부 제공’은 도구가 버전, 플랫폼, 권한, 계정 또는 설정에 따라 달라질 수 있음을 뜻하며 모든 설치에서 활성화되었다는 의미는 아닙니다.
macOS
목적
Excel 파일의 특정 셀에 값을 씁니다. 숫자처럼 보이는 값 문자열은 정확히 왕복 변환되는 경우에만 숫자로 기록되고, 그렇지 않으면 텍스트로 유지됩니다. 셀은 A1 표기법의 `cell`(예: "B2") 또는 1부터 시작하는 정수 `row`+`column`으로 지정하세요.
필수 입력
pathvalue
입력 이름은 도구가 요구하는 정확한 형태로 유지됩니다. 영문 정식 기술 정의는 아래 펼칠 수 있는 스키마에 있습니다.
권한 및 확인
스키마에 명시적 확인 매개변수가 있습니다. 미리보기를 검토하고 플랫폼 계약에 따라 실제 작업을 승인하세요.
- 이 플랫폼에서는 사용자가 승인한 앱, 계정 및 리소스만 사용하세요. 연결 및 권한 요구 사항은 이 도구의 플랫폼별 설명을 참조하세요. 이 카탈로그는 추가 OAuth 범위나 OS 권한이 있다고 주장하지 않습니다.
영문 정식 기술 스키마 — macOS
{
"properties": {
"cell": {
"description": "Cell in A1 notation, e.g. \"B2\" (alternative to row+column)",
"type": "string"
},
"column": {
"description": "Column number (1-based) — use with `row`, or use `cell` instead",
"type": "integer"
},
"confirm": {
"description": "Must be true to modify",
"type": "boolean"
},
"path": {
"description": "Path to the .xlsx file",
"type": "string"
},
"row": {
"description": "Row number (1-based) — use with `column`, or use `cell` instead",
"type": "integer"
},
"sheet_name": {
"description": "Sheet name (default: first sheet)",
"type": "string"
},
"value": {
"description": "Value to write",
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
}문서 예시
excel_write_cell 문서 예시입니다. 이 예시를 실행하지 마세요. 표시된 인수는 가상 데이터 세트에 속합니다. 실제 호출 전에 실제 식별자를 확인하고 승인을 받으세요.
{
"cell": "B2",
"confirm": false,
"path": "/Users/demo/Documents/launch-checklist.xlsx",
"value": "Reviewed"
}Windows
목적
기존 Excel 파일의 특정 셀에 값을 씁니다.
필수 입력
pathvalue
입력 이름은 도구가 요구하는 정확한 형태로 유지됩니다. 영문 정식 기술 정의는 아래 펼칠 수 있는 스키마에 있습니다.
권한 및 확인
스키마에 명시적 확인 매개변수가 있습니다. 미리보기를 검토하고 플랫폼 계약에 따라 실제 작업을 승인하세요.
- 이 플랫폼에서는 사용자가 승인한 앱, 계정 및 리소스만 사용하세요. 연결 및 권한 요구 사항은 이 도구의 플랫폼별 설명을 참조하세요. 이 카탈로그는 추가 OAuth 범위나 OS 권한이 있다고 주장하지 않습니다.
영문 정식 기술 스키마 — Windows
{
"properties": {
"cell": {
"description": "Cell reference (e.g., B2) — alternative to row+column",
"type": "string"
},
"column": {
"description": "Column number (1-based) — use with `row`, alias for `cell`. The name the cloud catalog (Mac) advertises.",
"type": "integer"
},
"confirm": {
"description": "Must be true to write",
"type": "boolean"
},
"path": {
"description": "Path to .xlsx file",
"type": "string"
},
"row": {
"description": "Row number (1-based) — use with `column`, alias for `cell`",
"type": "integer"
},
"sheet_name": {
"description": "Name of the sheet to write to (default: first sheet). The name the cloud catalog (Mac) advertises.",
"type": "string"
},
"value": {
"description": "Value to write",
"type": "string"
}
},
"required": [
"path",
"value"
],
"type": "object"
}문서 예시
excel_write_cell 문서 예시입니다. 이 예시를 실행하지 마세요. 표시된 인수는 가상 데이터 세트에 속합니다. 실제 호출 전에 실제 식별자를 확인하고 승인을 받으세요.
{
"cell": "B2",
"confirm": false,
"path": "C:\\Users\\demo\\Documents\\launch-checklist.xlsx",
"value": "Reviewed"
}