Page 1 of 1
กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet โดยไม่ใช้ google from
Posted: Wed Oct 21, 2020 11:20 pm
by soitawan
กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet ได้มั๊ยครับโดยไม่ต้องใช้ google from คือกรอกข้อมูลในชีทแรกแล้วให้ชีทที่สองเป็น database
https://docs.google.com/spreadsheets/d/ ... sp=sharing
ผมต้องเขียน script แบบไหนครับโดยที่ข้อมูลที่กรอกในชีทแรกข้อมูลจะมาต่อในชีทที่สองในcellถัดไปเรี่อยๆเหมือนกรอกจาก google from
Re: กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet โดยไม่ใช้ google from
Posted: Thu Oct 22, 2020 7:12 am
by snasui
ต้องเขียน JavaScript เพื่อนำค่าไปวางต่อท้ายข้อมูลเดิม ลองเขียนมาเองก่อน ติดปัญหาแล้วค่อยถามกันต่อครับ
Re: กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet โดยไม่ใช้ google from
Posted: Thu Oct 22, 2020 10:14 am
by soitawan
เมื่อคืนลอองหาวิธีจนเกือบเช้าเรยครับ
ลองสร้างปุ่มแล้วบันทึกมาโคร มากรอกข้อมูลชีทกรอกข้อมูลใหม่ ในชีทฐานข้อมูลมไ่ขึ้นบรรทัดถัดไปครับ
function boy1() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('C2:C9').activate();
spreadsheet.setActiveSheet(spreadsheet.getSheetByName('ฐานข้อมูล'), true);
spreadsheet.getRange('\'กรอกข้อมูล\'!C2:C9').copyTo(spreadsheet.getActiveRange(), SpreadsheetApp.CopyPasteType.PASTE_NORMAL, true);
spreadsheet.setActiveSheet(spreadsheet.getSheetByName('กรอกข้อมูล'), true);
spreadsheet.getActiveRangeList().clear({contentsOnly: true, skipFilteredRows: true});
};
Re: กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet โดยไม่ใช้ google from
Posted: Sat Oct 24, 2020 8:49 am
by snasui
soitawan wrote: Thu Oct 22, 2020 10:14 am
เมื่อคืนลอองหาวิธีจนเกือบเช้า
เรยครับ
ข้อความที่ผมระบายสีไว้ผิดกฎการใช้บอร์ดข้อ 1 ด้านบน กรุณาระมัดระวังด้วยครับ
Link แบบ View ได้อย่างเดียวผมไม่สามารถช่วยทดสอบ Code ให้ได้ สำหรับการวางข้อมูลต่อจากข้อมูลเดิมในชีตอื่น ดูได้จาก Link นี้ครับ
https://stackoverflow.com/questions/601 ... ast-record
Re: กรอกข้อมูลใน google sheet ให้ไปแสดงในอีก sheet โดยไม่ใช้ google from
Posted: Sat Oct 24, 2020 8:11 pm
by soitawan
ขอบคุณมากครับ ผมจะลองทำดูครับ