#appscript
Explore tagged Tumblr posts
k12academics · 1 month ago
Text
Tumblr media
Solvecraft, LLC specializes in getting the most out of Microsoft Excel, Google Sheets, and related processes for your team. We develop advanced formulas, templates, data organization & cleaning plans, plus macros/VBA to automate processes and improve your workflow.
Solvecraft also supports organizations with process documentation & improvement, Microsoft Word, task management, and form/survey testing.
We are an SBA-certified Woman-Owned Small Business
0 notes
outright-crm · 8 months ago
Text
0 notes
pulipuli · 2 years ago
Photo
Tumblr media
最近我改用Google Sheet整理大量資料。 但每次打開Google Sheet要新增資料時,都必須捲到最後一列,才能慢慢地新增資料。 真的是太麻煩了。 不知道有沒有快速跳到最後一列的方法呢? ---- # 快捷鍵 / Hotkey https://qr.ae/prKnXQ 今天學到新的技巧了:Ctrl + Down。 這樣就可以跳到最後一列。 ---- # AppScript 不過每次都要按快捷鍵,還是有點麻煩。 有沒有更省力的方法呢?。 https://stackoverflow.com/a/52667081。 答案是AppScript: [Code...] 這樣每次開啟Sheet的時候,它會將現在瀏覽的這一頁移動到最後一列的下一列,方便你直接開始新增資料囉。 真的是很方便呢。 ---- 你還知道什麼Google Sheet小技巧嗎?。 歡迎下面分享喔! ---- #AppScript #GoogleSheet #JavaScript 看看網頁版全文 ⇨ Google試算表的小技巧 / Tips for Google Sheet https://blog.pulipuli.info/2023/02/blog-post_14.html
0 notes
lightoutonfifth · 2 years ago
Text
I am so amazingly tired. I just want to stare at spreadsheets, why must I wrangle the tender emotions of people? Why does the responsibility of their reactions fall on my head? Let me just change the conditional formatting of this column. Let write a script to grab the id using the API. Allow me to simplify this data into a readable format--This is all I desire. Why must I explain it in plain English when it's apparent in plain cells?
4 notes · View notes
Text
Demanding Delivery Services in 2023: Trends to be Aware
https://medium.com/@krishsgtrio/demanding-delivery-services-in-2023-trends-to-be-aware-b4fb569b4d0d
0 notes
anonyviet · 5 months ago
Text
Việc tích hợp Gemini vào Google Sheets không chỉ giúp tự động hóa dữ liệu mà còn mở ra những khả năng mới trong việc quản lý và phân tích thông tin. Bằng cách kết hợp sức mạnh của Gemini với tính năng linh hoạt của Google Sheets, bạn có thể tận dụng tối đa hiệu quả công việc của mình, từ đó đưa ra những quyết định kinh doanh thông minh và dựa trên dữ liệu chính xác. Giới thiệu về Gemini của Google Gemini, một sản phẩm trí tuệ nhân tạo đầy tiềm năng của Google, đã được công bố trong hội nghị nhà phát triển Google I/O diễn ra vào tháng 5 năm 2023. Sundar Pichai, CEO của Google, đã tiết lộ thông tin về hệ thống AI sắp tới này, đặt ra sự cạnh tranh với ChatGPT của OpenAI thời điểm đó. [caption id="attachment_61695" align="aligncenter" width="800"] Giới thiệu về Gemini của Google[/caption] Sản phẩm Google Gemini được phát triển như một Large Language Model (LLM), với cơ sở dữ liệu khổng lồ từ Google. Nó có khả năng tạo ra văn bản tự nhiên, sản sinh ra nhiều loại nội dung khác nhau và đáp ứng các yêu cầu truy vấn của người dùng trong hầu hết mọi lĩnh vực. Theo đánh giá ban đầu từ giới công nghệ, Gemini có sức mạnh lên đến 5 lần so với GPT-4, mang lại câu trả lời chính xác hơn, đầy đủ hơn và có khả năng suy luận sâu hơn. Điều này giúp cải thiện trải nghiệm công nghệ và tối ưu hóa cho người dùng. Lợi ích khi tích hợp Gemini vào Google Sheets Tăng cường khả năng phân tích dữ liệu của Google Sheets, giúp bạn tiết kiệm thời gian và công sức khi phải tự xử lý dữ liệu thủ công. Tạo ra các câu trả lời tự động, giúp bạn nắm bắt thông tin một cách nhanh chóng và chính xác. Tăng cường khả năng tương tác với dữ liệu, giúp bạn dễ dàng hơn trong việc hiểu và làm việc với dữ liệu. [caption id="attachment_61696" align="aligncenter" width="800"] Lợi ích khi tích hợp Gemini vào Google Sheets[/caption] Xem thêm: Cách sử dụng Gemini Flash/ Pro, ChatGPT Plus miễn phí  Cách tích hợp Gemini vào Google Sheets Bước 1: Copy toàn bộ Code bên dưới (code này gốc từ J2team và có chỉnh sửa lại 1 xíu để hoạt động được) function myFunction() const prompt = "What is the weather like today?"; const result = askGPT(prompt); Logger.log(result); // Log the response from the API function askGPT(prompt) const API_KEY = 'xxxxxxxxxxxxxxxxxxxxxx'; const URL = `https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash-latest:generateContent?key=$API_KEY`; const payload = "contents": [ "role": "model", "parts": [ "text": "You are a helpful assistant. Your name is J2TEAM GPT" ] , "role": "user", "parts": [ "text": prompt ] ] ; const options = method: 'post', contentType: 'application/json', payload: JSON.stringify(payload) ; try const response = UrlFetchApp.fetch(URL, options); const json = JSON.parse(response.getContentText()); return json["candidates"][0]["content"]["parts"][0]["text"]; catch (e) return `Error: $e.message`; Bước 2: Mở trang tính trong Google Sheets > Nhấn vào mục ‘Tiện ích mở rộng’ > Chọn Apps Script [caption id="attachment_61699" align="aligncenter" width="800"] Nhấn vào mục ‘Tiện ích mở rộng’, chọn Apps Script[/caption] Bước 3: Lấy API Key theo đường link TẠI ĐÂY > Chọn Get API key > Chọn Create API key in new project > Nhấn Copy để sao chép [caption id="attachment_61700" align="aligncenter" width="730"] Chọn Create API key in new project[/caption] [caption id="attachment_61701" align="aligncenter" width="800"] Nhấn Copy để sao chép[/caption] Bước 4: Dán API Key vào cửa sổ Apps Script tại chỗ YOUR_API_KEY > Nhấn ‘Lưu dự án’ Bạn lưu ý là API Key phải nằm giữa 2 dấu nháy nhé. Bước 5: Nhấn nút RUN và cấp quyền cho Appscript truy cập vào Google Sheet của bạn Bước 6: Quay trở lại trang Sheets, gõ dòng lệnh sau =askGPT(“Prompt”) Trong đó, thay Prompt thành câu hỏi hay yêu cầu của bạn cho Gemini/ Ví dụ: =askGPT(“bạn là ai”) [caption id="attachment_61704" align="aligncenter" width="388"] Gõ dòng lệnh kích hoạt Gemini[/caption] Bước 7: Sau đó nhấn Enter để hiển thị câu trả lời
[caption id="attachment_61705" align="aligncenter" width="701"] Cách tích hợp Gemini vào Google Sheets[/caption] Xem thêm: Cách đăng ký Gemini Advanced và nhận 2TB Google Drive miễn phí Lời Kết Vậy là bạn đã hoàn tất quá trình tích hợp Gemini vào Google Sheets. Gemini không chỉ giúp bạn tiết kiệm thời gian và công sức, mà còn giúp bạn làm việc hiệu quả hơn với dữ liệu. Hãy bắt đầu khám phá và trải nghiệm Gemini ngay hôm nay, để tận hưởng những lợi ích mà công cụ này mang lại nha. Code tham khảo từ J2Team và được chỉnh sửa để hoạt động hiệu quả hơn
0 notes
prolink247-blog · 11 months ago
Text
Công cụ tạo nội dung hàng loạt bằng GPT trên GGSheet
Để dễ hình dung hơn thì bạn này đã tích hợp ChatGPT vào trong GGSheet, thông qua đó giúp tạo nội dung hàng loạt từ chủ đề bạn muốn đồng thời sẽ hiển thị hình ảnh tự động ngay trong ô.
Vì công cụ này sẽ nâng cao hơn rất nhiều so với việc bạn sử dụng cơ bản Extension ChatGPT for GG Sheet không. Do đó, trước khi tìm hiểu về cách sử dụng nâng cao này, bạn hãy đọc và xem qua bài viết hoặc Video cách sử dụng ChatGPT trên GG Sheet để hiểu rõ hơn về cách sử dụng và cách công cụ hoạt động nhé.
Mẫu Sheet + GPT:
https://docs. google. com/spreadsheets/d/1p_H-t_IY2zTXztVT9zNGkIFA4ur82-Rvo3p_KTVI35I/edit#gid=1848611007
B1. Tạo bản sao google sheet, tạo luôn tệp appscript đính kèm (dùng cho Dall-e, thay API key trong sheet config)
Tumblr media Tumblr media
B2. Tải tiện ích GPT for sheet -> mở trong sheet vừa clone -> cài api key mới (dùng cho GPT xuất text cả 3 sheet)
Tumblr media
Tumblr media
0 notes
mqole · 8 months ago
Text
learnt how to use google sheets script editor AND appscript today i love women
spreadsheets my love spreadsheets my light
100 notes · View notes
sab-vs-self · 1 year ago
Text
I made a solution for my currently most annoying problem. I made an appscript to archive all the emails I've received within 72 hours unless it's starred.
I added it as my latest blog post .
1 note · View note
afiliadosiniciantes · 2 years ago
Video
Aprenda o script do Google Apps
Aprenda o script do Google Apps link https://go.hotmart.com/Y67910549N Você já pensou em como seria útil saber como programar no Google Apps Script? E se eu te dissesse que isso pode ser fácil e divertido? Com o eBook "Aprenda o script do Google Apps", você poderá aprender a programar em um dos sistemas mais poderosos e acessíveis da atualidade. Cheio de exemplos e trechos de código, este livro foi desenvolvido especialmente para ajudar qualquer pessoa a começar a programar no Google Apps Script. Com uma abordagem passo a passo, este livro ensina como usar o Google Apps Script de forma simples e prática, com exemplos de codificação que você pode experimentar. Com exercícios iniciais, projetados como exemplos de codificação, você poderá levar seus aplicativos ao próximo nível. Cada lição foi projetada especificamente para demonstrar como um aspecto específico do Google Apps Script pode ser usado para executar tarefas e funções comuns. Não importa se você é um iniciante ou um usuário avançado, este livro será uma excelente ferramenta para aprender e melhorar suas habilidades. Não perca mais tempo e adquira agora mesmo o eBook "Aprenda o script do Google Apps". Aprenda a programar com uma das tecnologias mais poderosas e acessíveis do mercado e leve seus aplicativos para o próximo nível. Com este livro, você estará pronto para enfrentar qualquer desafio! Este livro foi desenvolvido para ajudar qualquer pessoa a começar com o código, carregado com exemplos de codificação e trechos de código que você pode experimentar. Saiba mais com uma abordagem passo a passo que ajuda a demonstrar o poder do Google Apps Script com exemplos simples. Os exemplos de codificação são projetados como exercícios iniciais que podem ser usados para levar seus aplicativos ao próximo nível. Cada lição foi projetada especificamente para demonstrar como um aspecto específico do Google Apps Script pode ser usado para executar tarefas e funções comuns. #script #googlescript #appscript #scriptgoogle #appscripts
0 notes
mzaghi · 2 years ago
Text
Buscamos experto #google #appscripts #guatemala via #comercializdoragt
Buscamos experto #google #appscripts #guatemala via #comercializdoragt Favor enviar CV a [email protected] Profesional de TI que sea experto en codificación en GoogleAppsScript.• Conocimientos y Habilidades Principales:• Licenciado en Informática.• Certificaciones en tecnología de Google como desarrollador• Más de 3 años de codificación en Google AppsScript• Inglés Intermedio• Conocimientos de…
View On WordPress
0 notes
outright-crm · 9 months ago
Text
youtube
0 notes
thephpmunchies-blog · 5 years ago
Text
How a Website Like Fiverr Help Your Website?
Tumblr media
Fiverr is a website that is created for the Freelancers. Here people can buy and sell their services. As a seller on Fiverr, you may need to create a “GIG”. The gig is a service that a freelancer is offering to its customers. This help buyers know about your service. Freelancers who are selling their services create gigs. Buyers check and purchase those services. Fiverr has become a platform for all those who are looking for their dream jobs.
Benefits of Creating a Website Just Like Fiverr –
1. Time Management
Tumblr media
When you are doing a freelancing job, you are free from those 9 to 5 shifts. You can manage your work at the time that suits you best. You can work in the morning, or at night. It depends on you and when you want to work.
2. Become your Own Boss
Tumblr media
Being on office premises, you sometimes need to work for the task that you don’t like or comfortable with. But a freelancer is free from all such things, you can choose the work that suits you best without even thinking about anything.
3. Remote Working
Tumblr media
Location dependency is something that everyone hates. Freelancing helps you to work from anywhere. There is no pressure of working in a particular environment. To start with your work, you just need to have a good internet connection. Working at your comfort zone also helps you in improving your work performance as compared to those 9 to 5 jobs.
4. Work on your Terms
Tumblr media
Answering to the upper authorities can be irritating sometimes. While working as a freelancer, you do not have a large workspace or a big team to whom you need to answer. Whatever you do, you are responsible for it. You are only answerable to your client and no one else.
Above mentioned are some of the benefits available with Fiverr. Now, coming on to your concern. “Can creating a website like Fiverr help your website?”
Yes, of course! You can get a web application created similar to Fiverr. And if you are thinking of starting your own business but not sure how it works. Taking help from popular websites can do wonders. Many online platforms are there that are creating web app scripts. These scripts look exactly like your favourite applications. And the best part of creating an application like this is that you can add a variety of features that helps your business to grow. You can even get your application customized according to the requirements to make it stand out from others.
Scripting Fiverr application can be a great choice. You can build a powerful micro-job website on the internet. It is important to look for an ideal website that you think can do wonders to your website. This is because this helps you integrate some of the common yet the important features to your website.
Features That Are Needed to be Included are –
Tumblr media
1. PayPal Integration which has proven itself to be one of the best and the most important element. 2. MD5 Encoding for the passwords that are important for the security purpose of your application. 3. Social share options to help share jobs on social media websites like Facebook, Twitter, etc. 4. Add features like multi-language support. 5. Protecting your application from hackers. 6. A fully SEO Optimized website as per the requirement. 7. Ability to suggest others with the jobs that they can go for.
These are some of the points that you need to have on your web-based application if you think to get a website just like Fiverr. Another important thing about creating scripts for your website is that you can choose languages as per your needs from — Php, Laravel, Java, .net, and many more.
So, what are you waiting for? If you have got some knowledge from the above article on choosing a Fiverr app script. And looking to get an app created similar to it. Go ahead and choose a service that is providing you with such applications. And if it is fitting your budget. Just go for it and enjoy the best application created for your website.
1 note · View note
jandrozd-blog · 5 years ago
Photo
Tumblr media
This infographics is a great way to help those who are looking for understanding the use of Web Development for creating your own customized apps. Learn about the importance of scripting any application here.
http://www.rebrandone.com/
1 note · View note
judithrjackson-blog · 5 years ago
Link
Hello, this article will help you to know about the 04 excellent benefits of using WhatsApp for business. For more details, you can even visit the link given below: https://www.rebrandone.com/
1 note · View note
trioanglenew · 2 years ago
Text
0 notes