Google Apps Script Tutorial in Hindi
|Google Apps Script Tutorial : Learn how to utilize Google Apps Script through this comprehensive English tutorial. With live searching option included, you’ll receive a step-by-step guide to help you automate your projects. Dive in now and streamline your workflows!
Google Apps Script का उपयोग कैसे करें सीखें यह एक सरल हिंदी ट्यूटोरियल के माध्यम से है। इसमें लाइव सर्चिंग का ऑप्शन भी है और आपको स्टेप-बाय-स्टेप गाइड मिलेगी। अभी पढ़ें और अपने प्रोजेक्ट्स को ऑटोमेट करें
Google Apps Script Search : आप निम्न bar से Code Search कर सकते हैं।
Methods | Description | |
---|---|---|
onOpen | jab bhi hame Sheet open hone par koi script execute karna ho tab | https://youtu.be/Pkzl_vhvUBM/&t=36 |
onSelectionChange | jab Sheet ke kisi cell par Selection (Cursor) Move karne par Script Execute | https://youtu.be/Pkzl_vhvUBM/&t=133 |
onEdit | jab Sheet ke kisi cell par value change karne par Script Execute karna ho tab | https://youtu.be/Pkzl_vhvUBM/&t=236 |
Alert | User ko Message Display karne ke liye | https://youtu.be/q2zhykKaWvA |
Prompt | User se Input lene ke liye | https://youtu.be/ZLlAFuE6Zrc |
Toast | Botton Right Corner par Message Display kar automatic use hide karne liye | https://youtu.be/my7ddCQCEbk |
ShowModalDialog | External Dialog Box Open karne ke liye | https://youtu.be/yOEClwgpSRc |
ShowModelessDialog | isme Dialog open bhi rahta hain or aap Sheet par working bhi kar sakte hain | https://youtu.be/uc1dXDapM6A |
showSidebar | Sidebar – Left side me box dikhane ke liye | https://youtu.be/ifhTbXfVPwI |
createMenu | Custom Menu, SubMenu banane ke lilye | https://youtu.be/J3u_Uvx6OkA |
HTMLService | HTML Content Kaise dikhaye | https://youtu.be/38nFyIV58l0 |
Clickable Image | Image Button | https://youtu.be/Pjkq8BTIhv4 |
Image Display | Google Drive to Google Sheet | https://youtu.be/havAFnr3sUI |
Product Gallery | Display your Product Detail with Image, Name, Description, MRP, Price | https://youtu.be/LXJSKe8fpTs |
Google Sheet Search | Search Sheet with name using Sidebar | https://youtu.be/xQ11Wn0IuQs |
HTML to Sheet | HTML Form (Localhost) Submit to Google Sheet | https://youtu.be/lKeFN4JxRB8 |
Sheet to HTML Table | Pull Data From Sheet To HTML Table (Localhost) | https://youtu.be/dc1z2QcPmDo |
Sheet to HTML (Web) | Google Sheet to HTML Table (Web) | https://youtu.be/N9kgbSgRAPE |
Dynamic Select | Dynamic HTML Dropdown from Sheet | https://youtu.be/mPn7sGxbfOA |
Get Next Number | Next Invoice Number | https://youtu.be/rLLGdnTyj44 |
Search Invoice | HTML Invoice Search From Google Sheet | https://youtu.be/BunOO__Ftk0 |
Update Sheet | Modify Google Sheet from Html | https://youtu.be/ErdUfo4YxIo |
Display & Open | How to Display Google Sheets Data in a Table and Show Details on an HTML Page | https://youtu.be/RjTZiMRUy2A |
Upload Image to Drive | How to Upload Images from Local Host or Server to Google Drive | https://youtu.be/Q5TKeqxcpCU |
Upload Image to Sheet | How to Upload Images from Local Host or Server to Google Sheet | https://youtu.be/RJYDb__wLCI |
Date Format | Sending HTML Form Data to Google Sheets (DD-MM-YYYY Format) | https://youtu.be/xJJHA345BNg |
createHtmlOutput | Customizing Apps Script Output | https://youtu.be/J3abjSdPaj4 |
Get Item Rate | Fetch Item Rates from Google Sheets | https://youtu.be/kswAIttEdcM |
Simple Login | Simple Login System | https://youtu.be/Ls1JR8QUrbA |
User Registration | User Registration System | https://youtu.be/hG87WrXkDSk |
Secure Login | Secure Login, Logout, and User Registration with Session | https://youtu.be/90SQmafC1HU |
Email OTP | Email OTP While User Registration in Google | https://youtu.be/ZfTGavM9D7w |
Forgot Password | How to e-mail password when forgot password | https://youtu.be/3EXteOuX_Js |
Navigation | Dynamic Web App Navigation & Multiple Pages Tutorial | https://youtu.be/jtHULVi0Ed4 |
Set Title | Set Title on HTML Page | https://youtu.be/qiQeDxcNg6E |
User Info | Display User Information on the Home Page | https://youtu.be/i0J_xpruB1o |
Unique Dropdown | Unique Data Dropdown | Eliminate Duplicates | https://youtu.be/kq5-jPZUMN8 |
Dependent Dropdown | Google Sheets Dependent Dropdowns | https://youtu.be/wyAnzXmBGG8 |
Create Dynamic HTML | Create Dynamic HTML Forms Using Google Apps Script – CRUD | https://youtu.be/eyn15ND58OQ |
Read Dynamic Sheet | Dynamic Google Sheet Data to HTML Table – CRUD | https://youtu.be/qKnM0CAfyuU |
Update Dynamic Form | Update – Google Sheet Data to HTML Table | Interactive Form – CRUD | https://youtu.be/DD-VvIMYhOg |
Delete Dynamic App | Delete Button Web API – CRUD | https://youtu.be/NlLwrvGsp-Y |
Pagination | Pagination: Infinite Scroll | https://youtu.be/5KoJBAZOUGo |
onOpen
जब भी हम चाहते हैं की Sheet open होते ही Code Execute हो तब हम onOpen Event या Method का उपयोग करते हैं ।
function onOpen(e) {
let ui = SpreadsheetApp.getUi();
ui.alert("onOpen");
}
onSelectionChange
जब भी आपकी किसी भी Cell पर से Cursor को हटा कर अन्य किसी Cell पर ले जाते हैं तब यह Event / Trigger Execute होता हैं। इसमे मे आपको Range parameter प्राप्त होता है जिस cell या Range (एक से अधिक Cell) पर से आपने cursor हटाया हैं वह Range इसमे Parameter मे प्राप्त होती हैं ।
function onSelectionChange(e) {
let ui = SpreadsheetApp.getUi();
const range = e.range;
range.setBackground('lightblue');
}
onEdit
जब भी आप Sheet पर कुछ Change करते हैं तब यह Event Execute करते हैं। इसमे Parameter मे Cell और Range (एक से अधिक cells) प्राप्त होते हैं ।
function onEdit(e) {
let ui = SpreadsheetApp.getUi();
const range = e.range;
range.setBackground('lightgreen');
}
Alert
जब भी आपको कोई Message Box (Alert) दिखाना हो तो आप Alert का उपयोग कर सकते हैं।
function myOpen()
{
let ui = SpreadsheetApp.getUi();
//1. Simple Alert
ui.alert("Welcome");
//2. With Button Set
ui.alert("Hello", ui.ButtonSet.YES_NO_CANCEL);
//3. With Title & Button Set
ui.alert("Delete", "Want to Delete?", ui.ButtonSet.YES_NO);
//4. Response Handle
let res = ui.alert("Delete", "Want to Delete?", ui.ButtonSet.YES_NO)
if (res == ui.Button.YES) {
ui.alert("Yes");
}
else if (res == ui.Button.NO) {
ui.alert("No");
}
}
Prompt
जब हमने Message Box मे User से कुछ Input लेना हो तब हम prompt का उपयोग करते हैं।
function onOpen() {
let ui = SpreadsheetApp.getUi();
//1
let res1 = ui.prompt("Enter Your Name");
let txt1 = res1.getResponseText();
ui.alert(txt1);
//2
let res2 = ui.prompt("Enter Your Name", ui.ButtonSet.YES_NO);
let txt2 = res2.getResponseText();
let btn2 = res2.getSelectedButton();
if (btn2 == ui.Button.YES) {
ui.alert(txt2);
}
//3
let res3 = ui.prompt("Name", "Enter Your Name", ui.ButtonSet.YES_NO);
let txt3 = res3.getResponseText();
let btn3 = res3.getSelectedButton();
if (btn3 == ui.Button.YES) {
ui.alert(txt3);
}
}
Toast
जब हमने Bottom Right Corner पर एक ऐसा box दिखाना हो जो दिखाई दे और कुछ समय बाद Hide हो जाए।
function myFunction() {
let sheet = SpreadsheetApp.getActive();
sheet.toast("Write Message ");
sheet.toast("Write Message", "Title Here");
sheet.toast("Write Message", "Title Here", 3);
sheet.toast("Write Message", "Title Here", 100);
}
इस Article मे हमने Apps Script की Basic से Advance बहुत से Topic को Cover किया हैं। आशा हैं की आपको यह Google Apps Script Tutorial in Hidi बहुत अच्छे से समझ मे आ गया होगा।
आपको यह Google Apps Script Tutorial कैसा लगा ? बताना न भूले मिलते हैं Next Article मे Thanks for Reading ।
हमारे अन्य आर्टिकल
- MySQL Function
- MySQL Stored Procedure
- PHP Get /Post Method के बारे में जाने
- PHP Math Function के बारे में जाने
- C से C ++ सीखे सरल शब्दों में
- PHP Variable के बारे में जाने
- Arduino Control Structure
- Union in C
- Declaration of Pointer in C
- jQuery Search Filter
- MySQL Create Table | Alter Table | Drop Table
- API Using NODE REACT EXPRESS MYSQL SEQUELIZE (For Backend OR Server Side)
- CPANEL In Hindi