Posts

Google Data Studio make your Data Visualisation Dashboards

Image
Connect Easily access a wide variety of data. Data Studio’s built-in and partner connectors makes it possible to connect to virtually any kind of data. Visualize Turn your data into compelling stories of data visualisation art. Quickly build interactive reports and dashboards with Data Studio’s web based reporting tools. Share Share your reports and dashboards with individuals, teams, or the world. Collaborate in real time. Embed your report on any web page Indian Company Details : Andaman and Nicobar Islands Google Data Studio gives you everything you need to turn your client’s analytics data into informational, easy-to-understand reports through data visualization. The reports are easy to read, easy to share and even customizable to each of your clients. You can select how you want to present the data — bar graphs, charts, line graphs and so on. You can even change fonts and colors and brand the reports with your logo. Data Studio Official Link Data Studio R

Google App Maker integration with DataTables To Export data in Excel, PDF and CSV

Image
The App Maker editor and user apps will be shut down on January 19, 2021. New application creation will be disabled starting April 15, 2020. Learn more More Details  I am woking on Google App Maker from last 2 years, I observe that App maker default table widgets is good for 100 or 200 records, but if you have more than 1000 records then default table widgets performance is not upto mark. It is very difficult to Export in CSV , PDF or  Excel... I am using DataTable  as alternative to load data quick and export in Excel, PDF or CSV. Then let's start to implement DataTable in Google app maker. Create New Page in App Maker Project  Add HTML table tag Open Newly created App Maker Page  Select HTML from widgets panel Give Name to HTML tage  Add HTML <table id="DataTableID" class="display" width="100%"></table> in HTML Text Add DataTable framework in your App Maker Project  Click on Gear Box Go to "External resou

To get Google Groups User details

Google Groups is a service from Google that provides discussion groups for people sharing common interests. The Groups service also provides a gateway to Usenet newsgroups via a shared user interface. Google Groups became operational in February 2001, following Google's acquisition of Deja's Usenet archive. Deja News had been operational since 1995. Google Groups allows any user to freely conduct and access threaded discussions, via either a web interface or e-mail. There are at least two kinds of discussion group. The first kind are forums specific to Google Groups, which act more like mailing lists.The second kind are Usenet groups, accessible by NNTP, for which Google Groups acts as gateway and unofficial archive. The Google Groups archive of Usenet newsgroup postings dates back to 1981. Through the Google Groups user interface, users can read and post to Usenet groups. In addition to accessing Google and Usenet groups, registered users can also set up mailing list arc

Vue.js with Google Apps Script Web Services

Image
Hi Apps Script Developer, Today,  I am sharing how to implement Vue.js framework with Google Apps Script Web Services. First, you need to copy Vue.js CDN link from Vue.org site there are two links one for the Development environment and another is for Production. For Development I am using Developer links it gives more error and warring descriptions. < script src = "https://cdn.jsdelivr.net/npm/vue/dist/vue.js" > </ script > Create Apps Script web app " Responsive Web Apps using Google Apps Script "  Add Script tag in JavaScript.html file after Jquery framework link. Save it In this example, I am fetching Server site Country Array list and Generating dropdown using Vue.js Vuejs Code File link Vuejs Exec Link  Performance Comparison(performance may vary from device to device) Using Vuejs : Scripting time=626.9ms Using Jquery : Scripting time=677.9ms Happy Coding... .COM at Rs.999 For 2 years

Responsive Web Apps using Google Apps Script

Image
Hi Apps Script developer's, Google apps Script allows to develop Dynamic and Static Web applications like fetch data from Google Sheet and create dynamic cards, intelligent data entry form, Workflows, Help Desk, etc. When you create Web apps using Google Apps Script, it will  not be responsive . You can make applications responsive using third party framework like Bootstrap , Material design or other HTML responsive framework. In this post I am explaining how to create responsive(Using Bootstrap 4.0) Google Apps Script Web application from scratch *Required Basic HTML & responsive framework knowledge  Go to your Google Drive Open Google Apps Script Editor   Create new blank apps script Project & save it Add 3 more Html files Index.html, JavaScript.html & Stylesheet.html with given code For any Web application it requires 4 main components(I am explaining best practise here, you can add HTML, JS & Stylesheet in to two files if you want) For code files