#google appscript
Explore tagged Tumblr posts
data-analysis-in-excel · 7 months ago
Text
Master Data Analysis with Google Sheets!
Unlock the power of Google Sheets for data analysis with this beginner-friendly course! Learn to clean, organize, and analyze data like a pro. Discover how to use functions, pivot tables, charts, and advanced tools like QUERY to extract insights. Perfect for students, professionals, and entrepreneurs looking to boost their skills.
Start your journey to becoming a data expert—all in the cloud, with real-time collaboration!
Tumblr media
3 notes · View notes
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
lucymlx · 5 months ago
Text
Tumblr media
Things I'm working on. Custom requests via AppScript and Google Spreadsheets.
0 notes
neuromantic1 · 5 months ago
Text
Tumblr media
I'm writing code again.
Google Spreadsheets + AppScript + Openrouter + any one of it's excellent models = loads of fun.
And animated gifs now available out of Davinci Resolve's timelines.
0 notes
Text
How to build online banking web app using web Appscript or Google Sheet ...
youtube
MARCEDRIC KIRBY FOUNDER CEO. CFO.
MARCEDRIC.KIRBY INC.
WELCOME TO THE VALLEY OF THE VAMPIRES
The bank regulatons are going to be down every man for itself I'm taking mine, what's left you can have it, but it won't be much I mean before ink dries up on that paper look don't talk just sign it money and power on popping BYE
0 notes
anonyviet · 1 year 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 · 2 years 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 · 1 year ago
Text
learnt how to use google sheets script editor AND appscript today i love women
spreadsheets my love spreadsheets my light
101 notes · View notes
aishasimone247 · 5 years ago
Text
An Ultimate Guide for Google App Script
Summary-  Google App Script are small snippets of code that add custom functions and integrations into your G Suite applications. It has a development environment that may be completely different from what we are used to.
Google App Script is a cloud-based and lightweight app developed by Google to automate simple tasks. If someone is already using G Suite apps for your enterprise, Apps Script comes at no extra cost. 
By using Google App Script
We can develop a browser-based code editor but can choose to develop locally if using CLASP, the command-line deployment tool for Apps Script
We can do coding in a specialized version of JavaScript customized to access G Suite, and other Google or external services.
We can safely ignore writing authorization code because Apps Script handles it for you
Do not have to host the app, it lives and runs on Google servers in the cloud
Tumblr media
                                                 Picture Courtesy-Infiflex
Benefits of Using Google App Script
Google App Script is completely a perfect tool for anyone who wants to customize Google Apps for their organization. If someone uses Google Apps Script and if they are looking to automate simple tasks, unlock the potential of other G Suite apps, access data from Google cloud infrastructure, and share scripts with other users as add-ons. Most of the users can get their first experience with automation through the cloud scripting app.
It is based on JavaScript; easy to learn.
Provides a cloud based debugger for debugging App Scripts in the web browser.
We can create simple tools for an organization's internal consumption.
Used to perform simple system administration tasks.
Community based support model.
What can App Script Do?
Google App Script can do a lot of things like automatically transfer the emails from Gmail to Drive based on the labelling, give deadlines to tasks and sync it with Google Calendar to get notifications. 
Following are the other things which you can do by using App Script-
We can Add custom menus, dialogs and sidebars to Google Docs, Sheets and forums.
We can write custom functions for Google Sheets.
Publish web apps.
We can also interact with other google services that include AdSense, Analytics, Calendar, Drive, Gmail, and Maps.
Build add-ons to extend Google Docs, Sheets, Slides and Forms and publish them to the add-ons store.
Uses of Google App Script
Make bulk changes to services like Google Calendar 
Create Mail Merge to use in your Gmail emails 
Send multiple emails from a spreadsheet.
Generate report of your Gmail usage statistics 
0 notes
capitalism-and-analytics · 5 years ago
Note
4. What kinds of software do you use?
Depends on the engagement and type of task, but to list a few major categories (not necessarily softwares) and as a note, the categories aren’t necessarily in order, but the bullets I tried to put in order of my most used (not necessarily order of my preference).
Structured Query Language (SQL)
Microsoft SQL Server
MySQL
SAP S4 HANA
Teradata
Microsoft Access
Data Visualization
Tableau
PowerBI
Qlikview
Cognos
Spotfire
Enterprise Risk Planning Systems
Salesforce
SAP
Oracle
Quickbooks
Cloud Server Systems
Amazon Web Services
Microsoft Azure
Google Cloud (Haven’t done a project in it yet though), but I’ve done certifications and some training on it
Python (Programming Language)
Generally only use it for automation of processes or data analysis for unstructured data
Another use case is for interacting with some files and/or some environments, though it’s rarely needed in my line of work
Visual Basic for Applications (VBA) 
Microsoft Excel
Microsoft Access
Google AppScript (JavaScript)
Google Sheets
Self-Service Analytics Tools / ETL Tools
Alteryx
OneStream
Robotic Process Automation (RPA) 
UiPath
Blue Prism
Web Analytics Service
Google Analytics
General Office Software:
Microsoft Office Suite (Access, Excel, PowerPoint, Outlook, Visio, Word, & Publisher)
Google Suite (Sheets, Forms, Slides, Docs, & G-Mail)
5 notes · View notes
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
k12academics · 9 months 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
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
mzaghi · 3 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
swarajya7793 · 4 years ago
Text
Impact of COVID-19 on mHealth in the Healthcare Industry
Tumblr media
COVID-19 Impact on mHealth in the Healthcare Industry
The COVID-19 pandemic has made an unprecedented effect on daily lives as well as the global economy. The impact on the healthcare sector has been seismic too and a significant burden is created on already strained healthcare systems across the world. As the overworked healthcare providers are grappling with constant rise in number of cases, patients are looking towards digital technologies for aid.
COVID-19 outbreak has also made healthcare professionals to look for alternative methods to traditional systems and processes. This is leading an expedited adoption of mHealth across the industry both from providers and consumers.
During the pandemic, several healthcare systems have bifurcated healthcare requirements into essential and non-essential based on urgency and overall requirement for care. As the non-essential requirements are given less priority during the pandemic, patients are resorting to mHealth solutions. This is augmenting the adoption of mHealth apps across a variety of therapeutic areas.
As the pandemic subsides, the healthcare industry is expected to witness drastic structural and procedural changes as a large number of people become sceptic of visiting closed spaces with high risks of infection. Hence, it can be concluded that the COVID-19 outbreak is expected to play a significant role in the digital transformation of healthcare industry.
The availability of healthcare apps is growing which are commonly referred to as mHealth (mobile health) apps. These apps are easy to download on smartphones, can be linked with wearable technology and assist the users in disease prevention and overall health management. The COVID-19 outbreak has increased the reliability of patients on mHealth apps in order to take an active and informed role in their own healthcare.
The easy availability of smart phones and the need for alternative ways to take care of health presents a notable opportunity for mHealth apps providers to expand features and usage. Companies are focusing towards connectivity improvements and interoperability of mHealth apps in terms of data storage and data transfer to healthcare providers. This level of data collection is also useful for tracking overall population health. Before the availability of this kind of data, health authorities were dependent on tedious population studies that had several limitations. MHealth has the capability to provide real time population health information through mass data collection. As a result, healthcare authorities across the world are taking initiatives for MHealth. The below chart shows the percentage of countries taking mHealth initiatives across various WHO regions:
COUNTRIES UNDERTAKING MHEALTH INITIATIVES ACROSS WHO REGIONS
Tumblr media
The COVID-19 pandemic has highlighted the value of digital approaches more than ever before that are designed to help health professionals and the public to maintain communication about a disease and stay updated with fresh information that will enable better strategic planning.
The market is flooded with mHealth apps and consumers have a lot to choose from. However, there is significant variation in their capabilities. Till now, the functionalities of these apps are narrow primarily due to mild demand and are restricted to providing information only. As the demand and the number of apps are increasing in the market, multi-functionality is becoming common. In order to enhance, consumers experience in managing their health, multi-functionalities for online appointment scheduling, medication reminders, online consultation and sending diagnostic test results to healthcare providers for analysis, review and action. These apps are superior in assisting consumers in managing and monitoring their health as compared to the information and education apps.
Currently, there are no authorities to check on the efficacy and accuracy of these apps leading to difficulties for healthcare providers to access the validity of data received through these apps. The problem is worsened with the mushrooming of mHealth apps leading to consumers self-determining the best app for their use by trying an overwhelming number of options without consent or consulting from health professionals. However, privately funded third party organizations are putting efforts to establish rating and evaluation systems that will indicate the appropriateness of these apps. Few of these organizations are Happtique, HealthTap, PatientView, Wellocracy and AppScript. These ratings are primarily based on user ratings, clinical ratings, and proprietary scoring methods. As a result, few products have low functionality scores but high rating due to scoring factors such as high clinical or patient ratings.
As the position of mHealth apps become more important in the aftermath of the COVID-19 pandemic, national health authorities are expected to launch rating and licensing platforms for higher efficiency and reduce crowding in the market.
For instance,
·         The United Kingdom National Health Service (NHS) has expanded their publicly funded prescribing platform to include clinically safe consumer apps.
The sudden outbreak of COVID-19 has highlighted the importance of population health monitoring systems and burden on healthcare systems. mHealth has the potential to meet these requirements. Few areas in current healthcare landscape where mHealth can be useful are listed below:
Reducing physical contact: Medical distancing has played an important role in reducing the infection rate of the novel virus. Key healthcare authorities such as the World Health Organization (WHO) and the Centers for Disease Control and Prevention (CDC) have advocated for minimal physical contact between the healthcare providers and patients. Since providers work near infected patients, they might likely contact the virus or act as a carrier which can be further spread to a healthy patient. With the help of mHealth apps, patients can share required data with physicians without actually visiting the healthcare providers. This will not only help in reducing COVID-19 infection but several other types of infections that a patient might contact in a healthcare establishment.
mHealth services are playing an important role in reducing healthcare-specific COVID-19 transmission. Due to sudden burden on healthcare facilities, treatments are given priorities on the basis of urgency. Moreover, patient not infected with COVID-19 virus do not want to visit these facilities. In this case, to treat mHealth is proving to be of immense use in several therapeutic areas including cardiology, dermatology, diabetic care and others by enabling high-quality remote care and reducing contact.
Population Health Management: The uncontrollable surge of COVID-19 infections has highlighted the need of crowdsourced health monitoring by tracking the infected. Existing surveillance systems have drawbacks associated with flexibility and amount of reliable information. mHealth offers the ability to collect real time information from a significant share of the population making the information more reliable and easy to use as compared to existing systems. mHealth can also be used by healthcare agencies to track the hotspots and carriers by analyzing travel routes which in turn provides information regarding the probability of catching an infection. Hence, health agencies can better manage health population by crowdsourcing disease monitoring using mHealth.
Health Information Exchange Improvement: The lack of appropriate health information exchanges has shown that interoperability of patient data is very important. The importance of other data types apart from core patient data including an individual’s offline and online activity has helped immensely in tracking of the spread of COVID-19 pandemic. In the aftermath of the virus, HIEs are expected to become open and un-localized. The infection has showed that in similar times, there is a crucial need for information to stop the spread of infection and save lives. The need for easy, seamless communications in healthcare is also important.
Health Gadgets: The COVID-19 infection increased the wellbeing awareness and anxiety across the world. It has instilled a sense of fear of infection that has led to increased adoption of smartphone applications and wearables. mHealth apps and complementary wearables play a crucial role in gaining information and getting a sense of protected. They provide accurate feedback on bodily functions including blood pressure and body temperature which helps in tracking health.
Several companies are using mHealth technology to track, test, and treat COVID-19.
For instance,
·         Google and Apple have announced that the companies are planning to launch APIs to provide interoperability between iOS and Android products. The companies are also aiming at enabling deeper data integration with the mHealth apps for public health initiatives of the government. To achieve the same, they are developing Bluetooth-based contact training features.
·         Walgreens announced expansion of its telehealth program including COVID-19 risk assessment. The platform meets the demands for social distancing and includes a website and mobile health application powered by Microsoft Healthcare Bot on Microsoft Azure. The platform helps patients to connect with nurses and doctors as per requirement.
·         SCP Health and SOC Telemed declared their partnership to provide scalable emergency service and hospital medicine through telemedicine that will enhance the critical capability of healthcare facilities.
·         Jefferson Health system and LifeLink have announced partnership to launch Jefferson’s chatbot across LifeLink’s 14 Philadelphia locations. The AI-based chabot will aid users in pre-screening of coronavirus outbreak and the right approach of their treatment in case they are infected with the virus.
CONCLUSION
The post-COVID-19 healthcare is expected to see transformation of processes with high inclusion of mHealth.
For instance,
·         Primary care and management of several non-communicable diseases are expected to be shifted to digital mode. Several countries including England, have begun to embrace telehealth for delivery of primary care and are undertaking a digital first approach for overall healthcare provision.
The sudden outbreak did not leave much scope for prompt action on impact. However, the post-COVID-19 world will witness increased adoption of mHealth as the new normal. Applications of emerging technologies such as 5G, AI, IoT, and others will be expanded. National governing bodies will emerge to manage mHealth approaches. Focus on precision health will also increase in both personalized and predictive health. The utilization of digital technology will increase for empowering patients to self-manage themselves, especially in case of non-communicable diseases.
0 notes
allstacksdeveloper · 4 years ago
Photo
Tumblr media
Diversification is important in stock investing! Link in bio if you want to learn more how to use Google Sheets and Google Data Studio to manage stock portfolio investment. #stocks #portfoliotracker #tracker #googlesheets #googledatastudio #allstacksdeveloper #investing #dividend #dividends #javascript #appscripts #googleappscript #dividendtracker #personalfinance #compoundinterest #marketindex #stockportfoliotracker #savingaccount #lionstockportfoliotracker https://www.instagram.com/p/CRRoI6HJ5MY/?utm_medium=tumblr
1 note · View note