Display Google Sheets Data in a Table, Learn how to showcase Google Sheets data effectively by displaying it in a well-organized table format on an HTML page. Discover how to present detailed information seamlessly, making your data visually appealing and easily accessible to users, Google Sheets Data in a Table.
क्या आप अपने वेबसाइट पर अपने गूगल शीट्स (Google Sheets) डेटा को एक सुव्यवस्थित और User Friendly तरीके से Display करने की तलाश में हैं? चिंता न करें! इस ट्यूटोरियल में, हम आपको बताएंगे कि कैसे आप अपने गूगल शीट्स डेटा को HTML पेज पर एक शानदार Table के रूप मे रूपांतरित कर सकते हैं।
हम आपको दिखाएंगे कि कैसे आप Dynamic और Interactive Table बना सकते हैं जो आपके Viewer को आकर्षित करेंगी और उन्हें खींचेगी। कुछ सरल Steps के साथ, आप अपने Google Sheet के Data को अपनी वेबसाइट में Integrate कर सकते हैं और अपने User को विवरणों का सुविधाजनक ढंग से खोजने दे सकते हैं।
इस Tutorial के अंत तक, आपके पास Google Sheet Data की एक Table Display होगी, जो user को Search और विशेष विवरणों को सहजता से देखने की अनुमति देगी। अपनी वेबसाइट पर एक सौंदर्यपूर्ण और कार्यात्मक डेटा प्रस्तुति से अपने दर्शकों को प्रभावित करें, जो आपकी वेबसाइट को एक नए स्तर पर उठा देगी।
Table of Contents
Step 1 : Create a Google Sheet
सबसे पहले आप निम्न Format मे एक Google Sheet बना लीजीए , इसमे आपको दो Sheet बनाना हैं , एक का नाम Inv रखना हैं और दूसरे का नाम Item रखना हैं,
Inv वाली Sheet मे Invoice से Related Data हैं, आप अपने कार्य के अनुसार यहाँ पर Data ले सकते हैं ।
निम्न Sheet जिसका नाम Item हैं इसमे हमने Item का Data लिया हैं । यहाँ पर भी आप अपने व्यवसाय के अनुसार लिस्ट का उपयोग कर सकते हैं ।
उपरोक्त दोनों ही Sheet का नाम का आपको विशेष ध्यान रखना हैं पहली Sheet ओर दूसरी Sheet दोनों मे ही आपको I Capital मे ही लेना हैं । यदि आपने Capital मे नहीं लिया तो Link होने मे इशू आएंगे ।
Step 2 : Apps Script Code
अब आपको Extension मे जा कर Apps Script Open करना हैं ।
Apps Script मे आपको यह निम्न Code Paste करना हैं ।
01 : इसमे हमने जो Sheet पर दो pages या sheet बनाई थी उन दोनों ही Sheet को Connect किया हैं ।
02 : यहाँ पर हमने Invoice ke Data को Save करने से Related Code लिखा हैं ।
03 : यहाँ पर हमें Parameter pass कर अलग – अलग तरह के टास्क किए हैं ।
Dropdown : इससे हमने Item की Dropdown मे Data दिखाया हैं ।
Max : इससे हमने जो Invoice open करते ही New Number आता हैं उसे Generate करवाया हैं ।
Search : इससे हम दिए गए Invoice No पर Record को Open करवाते हैं ।
All : इससे हमने एक साथ सभी Invoice की List जो Show All Data Click करने से आती हैं उसे दिखाया हैं ।
इसके बाद आपको इस Apps Script को डिप्लॉइ करना हैं । डिप्लॉइ कैसे किया जाता हैं इसके बारे मे मेरे द्वारा Article बनाया गया हैं आप निम्न Article की Help से Deploy कर सकते हैं ।
Successfully Deploy होने के बाद आपको एक Link मिलता हैं उस लिंक को आपको copy करना हैं और जो हम JavaScript लिखेंगे तब उस Link को आपको Paste करना होगी , जो निम्न प्रकार से होगी ।
https://script.google.com/macros/s/AKfy……XOQ/exec
Step 3 : Create HTML Page for Display Google Sheets Data
इसके बाद आप अपने local Computer या जिस भी Server पर Google Sheet का Data दिखाना चाहते हैं वहाँ पर एक HTML का Page बना लीजिए जिसका नाम आपको index.html रखना हैं या आप अपने हिसाब से भी रख सकते हैं ।
इस HTML Code के form tag पर action मे हमे Apps Script से Deploy कर जो लिंक आई थी वही Paste करना हैं , ऐसा करने से जब हम form को save करेंगे तो Data Google Sheet पर Store हो जाएगा ।
इसके बारे मे अधिक जानकारी के लिए आप हमारा निम्न Article Read कर सकते है ।
<!doctypehtml><htmllang="en"><head><metacharset="utf-8"><metaname="viewport"content="width=device-width, initial-scale=1"><title>Imagination Invoice Example</title><!-- For Bootstrap--><linkhref="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"rel="stylesheet"integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"crossorigin="anonymous"><!-- CSS For Print Format --><linkrel="stylesheet"media="print"href="invoiceprint.css"><!-- CSS For Invoice --><linkrel="stylesheet"href="invoice.css"><!-- jQuery CDN --><!--<script src="https://code.jquery.com/jquery-3.6.2.slim.js" integrity="sha256-OflJKW8Z8amEUuCaflBZJ4GOg4+JnNh9JdVfoV+6biw=" crossorigin="anonymous"></script>--><scriptsrc="https://code.jquery.com/jquery-3.6.3.js"></script><!-- For Invoice --><scriptsrc="invoice.js"></script><linkrel="stylesheet"href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css"></head><body><divclass="container "><formmethod="POST"class="needs-validation"novalidateaction="https://script.google.com/macros/s/.../exec"><divclass="card mt-3"><divclass="card-header text-center"><h4>Imagination (INVOICE) Apps Script</h4></div><divclass="card-body"><divclass="row"><divclass="col-8"><divclass="input-group mb-3"><spanclass="input-group-text">Customer</span><inputtype="text"class="form-control"placeholder="Customer"name="cust_nm"requiredminlength="4"><divclass="invalid-feedback">
Please Enter Customer Name </div></div><divclass="input-group mb-3"><spanclass="input-group-text">Address</span><inputtype="text"class="form-control"placeholder="Address"name="addr"></div><divclass="input-group mb-3"><spanclass="input-group-text">City</span><inputtype="text"class="form-control"placeholder="City"name="city"></div></div><divclass="col-4"><divclass="input-group mb-3"><spanclass="input-group-text">Inv. No</span><inputtype="text"class="form-control"placeholder="Inv. No"id="inv_no"name="inv_no"autocomplete="off"required><divclass="input-group-append"><buttonclass="btn btn-outline-secondary"type="button"onclick="Search();"><iclass="bi bi-search"></i></button></div><divclass="valid-feedback">Invoice No. is
OK</div></div><divclass="input-group mb-3"><spanclass="input-group-text">Inv. Date</span><inputtype="date"class="form-control"placeholder="Inv. Date"name="inv_dt"></div></div></div><inputtype="hidden"id="IsNew"name="IsNew"value="Y"><inputtype="hidden"id="StartRow"name="StartRow"value="0"><inputtype="hidden"id="RowCount"name="RowCount"value="0"><tableclass="table table-bordered"><theadclass="table-success"><tr><thscope="col">#</th><thscope="col">Particular</th><thscope="col"class="text-end">Qty</th><thscope="col"class="text-end">Rate</th><thscope="col"class="text-end">Amount</th><thscope="col"class="NoPrint"><buttontype="button"class="btn btn-sm btn-success"onclick="BtnAdd()">+</button></th></tr></thead><tbodyid="TBody"><trid="TRow"class="d-none"><thscope="row">1</th><td><inputclass="form-control "name="item_nm"list="mylist"autocomplete="off"requiredvalue="a"><datalistid="mylist"></datalist></td><td><inputtype="number"class="form-control text-end"name="qty"onchange="Calc(this);"></td><td><inputtype="number"class="form-control text-end"name="rate"onchange="Calc(this);"></td><td><inputtype="number"class="form-control text-end"name="amt"value="0"readonly=""></td><tdclass="NoPrint"><buttontype="button"class="btn btn-sm btn-danger"onclick="BtnDel(this)">X</button></td></tr></tbody></table><divclass="row"><divclass="col-8"><buttontype="submit"class="btn btn-primary">Submit</button><buttontype="button"class="btn btn-primary"onclick="GetPrint()">Print</button><buttontype="button"class="btn btn-primary"onclick="ShowAllData()">Show All Data</button></div><divclass="col-4"><divclass="input-group mb-3"><spanclass="input-group-text">Total</span><inputtype="number"class="form-control text-end"id="FTotal"name="FTotal"disabled=""></div><divclass="input-group mb-3"><spanclass="input-group-text">GST</span><inputtype="number"class="form-control text-end"id="FGST"name="FGST"onchange="GetTotal()"></div><divclass="input-group mb-3"><spanclass="input-group-text">Net Amt</span><inputtype="number"class="form-control text-end"id="FNet"name="FNet"disabled=""></div></div></div></div></div></form></div><divclass="modal fade"id="exampleModal"tabindex="-1"aria-labelledby="exampleModalLabel"aria-hidden="true"><divclass="modal-dialog"><divclass="modal-content"><divclass="modal-header"><h1class="modal-title fs-5"id="exampleModalLabel">Show Invoice</h1><buttontype="button"class="btn-close"data-bs-dismiss="modal"aria-label="Close"></button></div><divclass="modal-body"><tableclass="table table-striped"><tbodyid="MyTBody"></tbody></table></div><divclass="modal-footer"><buttontype="button"class="btn btn-secondary"data-bs-dismiss="modal">Close</button></div></div></div></div><scriptsrc="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"crossorigin="anonymous"></script><scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS"crossorigin="anonymous"></script></body></html>
Step 4 : Create CSS File
अब हमे एक CSS फाइल बनाना होगी जीसे हमने HTML (index.html) पर लिंक किया हैं । जिसका नाम हमने invoice.css रखा हैं ।
invoice.css
.input-group-text{width: 85px;}
Step 5: Create CSS Media Print File for Print View
हमने यहा पर इसी HTML का एक Print View भी बनाया हैं जिसके लिए हमने invoiceprint.css का उपयोग किया हैं जीसे भी हमने HTML (index.html) से लिंक किया हैं । इसकी मदद से हम जैसा भी हमारा Print View बनाना चाहते है आसानी से बना सकते हैं ।
इसके बाद हमने एक JavaScript file बनाना होगी जिससे की सभी Event को handle करना होगा ।
इसमे आपको जो Link Apps Script Code को Deploy करने के बाद प्राप्त हूई थी उसे पेस्ट करना हैं । ध्यान रहे केवल जो https://script.google.com/macros/s/ इसके बाद जो कोड होता हैं /exec के बीच का केवल उतना ही यहाँ पर आपको Paste करना हैं ।
invoice.js
var AppsScriptLink ="AKf......OQ";functionGetPrint(){/*For Print*/
window.print();}functionBtnAdd(){/*Add Button*/var v =$("#TRow").clone().appendTo("#TBody");$(v).find("input").val('');$(v).removeClass("d-none");$(v).find("th").first().html($('tr').length -2);}functionBtnDel(v){/*Delete Button*/$(v).parent().parent().remove();GetTotal();ReGenSrNo();}functionReGenSrNo(){$("#TBody").find("tr").each(function(index){$(this).find("th").first().html(index);});}functionCalc(v){/*Detail Calculation Each Row*/var index =$(v).parent().parent().index();var qty = document.getElementsByName("qty")[index].value;var rate = document.getElementsByName("rate")[index].value;var amt = qty * rate;
document.getElementsByName("amt")[index].value = amt;GetTotal();}functionGetTotal(){/*Footer Calculation*/var sum=0;var amts = document.getElementsByName("amt");for(let index =0; index < amts.length; index++){var amt = amts[index].value;
sum =+(sum)++(amt);}
document.getElementById("FTotal").value = sum;var gst = document.getElementById("FGST").value;var net =+(sum)++(gst);
document.getElementById("FNet").value = net;}$(document).ready(function(){FormValidation();SetCurrentDate();BtnAdd();FillDataList();MaxInv();});functionFillDataList(){
$.getJSON("https://script.google.com/macros/s/"+AppsScriptLink+"/exec?page=dropdown",function(data){var Options="";
$.each(data,function(key, value){
Options = Options +'<option>'+ value +'</option>';});$("#mylist").append(Options);});}functionMaxInv(){
$.getJSON("https://script.google.com/macros/s/"+AppsScriptLink+"/exec?page=max",function(data){$("input[name='inv_no']").val(data);});}functionSetCurrentDate(){const date =newDate();
console.log(date);let d = date.getDate();let m = date.getMonth()+1;let y = date.getFullYear();if(d <10) d ='0'+ d;if(m <10) m ='0'+ m;let CurrDate = y +'-'+ m +'-'+ d;$('input[name="inv_dt"]').val(CurrDate);}functionFormValidation(){// Example starter JavaScript for disabling form submissions if there are invalid fields(function(){'use strict'// Fetch all the forms we want to apply custom Bootstrap validation styles tovar forms = document.querySelectorAll('.needs-validation')// Loop over them and prevent submissionArray.prototype.slice.call(forms).forEach(function(form){
form.addEventListener('submit',function(event){if(!form.checkValidity()){
event.preventDefault()
event.stopPropagation()}
form.classList.add('was-validated')},false)})})()}functionSearch(pNo=""){var no =$('#inv_no').val();if(pNo !="") no = pNo;
$.getJSON("https://script.google.com/macros/s/"+AppsScriptLink+"/exec?page=search&no="+no,function(data){//alert(data);// console.log(data);if(data =="NOT FOUND"){alert('Invoice No. Not Found...');}else{//var record = data;var record = data.record;var StartRow = data.SR;var RowCount = data.CNT;$('#IsNew').val('N');$('#StartRow').val(StartRow);$('#RowCount').val(RowCount);var i =0;
$.each(record,function(key, value){if(i ==0){var dt = value[1].substring(0,10);
document.getElementsByName("inv_dt")[0].value = dt;
document.getElementsByName("cust_nm")[0].value = value[2];
document.getElementsByName("addr")[0].value = value[3];
document.getElementsByName("city")[0].value = value[4];}else{if(i >1)BtnAdd();
document.getElementsByName("item_nm")[i].value = value[5];
document.getElementsByName("qty")[i].value = value[6];
document.getElementsByName("rate")[i].value = value[7];
document.getElementsByName("amt")[i].value = value[8];}
i = i +1;});GetTotal();ReGenSrNo();}});$('#exampleModal').modal('hide');}functionShowAllData(){$(document).ready(function(){
$.getJSON("https://script.google.com/macros/s/"+AppsScriptLink+"/exec?page=all",function(data){var Table="", Rows="", Columns="";
$.each(data,function(key, value){var InvNo="";
Columns ="";
i=0;
$.each(value,function(key1, value1){
i++;if(i ==2){
value1 =""+ value1;
value1 = value1.substring(0,10);}
Columns = Columns +'<td>'+ value1 +'</td>';if(InvNo =="") InvNo = value1;});
Rows = Rows +'<tr onclick="Search('+InvNo+')">'+ Columns +'</tr>';});$("#MyTBody").html(Rows);$('#exampleModal').modal('show');});});}
GetPrint() : इस Function से हम HTML Invoice का Print View देख सकत हैं और साथ ही मे Print निकाल सकते हैं ।
BtnAdd() : इस Function से हम Detail वाली Table मे Rows Add कर सकते हैं ।
BtnDel() : इस Function से हम Table से Rows को Delete कर सकत हैं ।
ReGenSrNo() : इस ReGenSrNo Function से हम Delete करने से Sr No को फिर से सही करते हैं ।
Calc() : इस Calc से हम Amount से Related Calculation करते हैं ।
GetTotal() : इस GetTotal Function से हम Header के Total को Footer मे Shift करते हैं ।
FillDataList() : इस FillDataList Function से हम Item की select लिस्ट मे Data को Fill करते हैं ।
MaxInv() : इस MaxInv Function से हम Open करने पर जो नई Invoice का No Generate होता हैं वह दिखाई देता है।
SetCurrentDate() : इस Function से हम Invoice पर आज की दिनांक सेट करते हैं ।
FormValidation() : इस FormValidation Function से हम Form के Validation से Related working करते हैं।
Search() : इस Search Function से हम Invoice no दे कर Google Sheet के data को HTML पर दिखाते हैं।
ShowAllData() : इस ShowAllData Function से हम Google Sheet के data को Modal मे display करवाते हैं जिससे की User उस पर Click कर data को HTML Page पर दिखा सके ।
Step 7: Preview HTML & Test Code
इसके बाद हम HTML (index.html) File को Browser पर run कर देखेंगे ।
Page Open होने के बाद आपको Show All Data Button पर click करना हैं ऐसा करने से कुछ ही समय मे आपको निम्न प्रकार से Show Invoice Dialog Box दिखाई देगा । इसमे आपको Display Google Sheets Data in a Table होने लगेगा।
उपरोक्त Dialog Box मे दिखाई देने वाली Entries मे से आप जिस पर भी Click करेंगे वह Open हो कर कुछ निम्न तरह से दिखाई देने लगेगा ।
आशा हैं मुझे की आपको किस तरह से HTML पर Google Sheet के डाटा को Display किया जाता हैं समझ मे आ गया होगा। आपको यह Display Google Sheets Data in a Table Article कैसा लगा बताना न भूले ।
आपका समय देने का धन्यवाद! हमें खुशी हुई कि आपने हमारे ब्लॉग को पढ़ा और विचार साझा किया। यदि आपको हमारे ब्लॉग से कुछ नया सिखने को मिला हो या यह आपके लिए उपयोगी रहा हो, तो कृपया इसे अपने दोस्तों और परिवार के साथ साझा करें। हमें और भी रोचक विषयों पर लिखने का इच्छुक है, इसलिए आप हमारे साथ जुड़े रहें और हमारे ब्लॉग को नियमित रूप से चेक करते रहें।
यदि आपके पास कोई सुझाव या प्रतिक्रिया है, तो कृपया हमें बताएं, हम आपके विचारों का स्वागत करेंगे। धन्यवाद फिर से और बिताए गए समय के लिए आपका धन्यवाद। साथ में आने वाले ब्लॉगों में भी मिलते रहें। आपका साथ हमारे लिए महत्वपूर्ण है।
wow nice..thanks to learning…