Using Google sheets to send an email when value change [closed] - google-apps-script

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
This post was edited and submitted for review 3 days ago and failed to reopen the post:
Original close reason(s) were not resolved
Improve this question
I have a google sheet to manage expenses of football turf and wanted to automate email with message structure
Hi [player name],
your [Balance] is negative, Please clear your dues in the next game.
Thanks and Regards
[Company Name]
However i dont want to send it individually but send it as a bulk those players whose balance is negative to save time
Is there any coding for this as i dont have any programming knowledge?
Thanks and Regards
I did try a code which i found online and however it was going individually unfortunately which was wasting my time. I want to send it as one shot to a players whose balances turned negative

Related

Best practice to insert multiple requests, getting via API and store in Database without missing [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I've webhook, which is hitting with multiple entries on my function. Sometime when there are 10 to 15 request, the database insert and update query is missing.
There could be many solutions like :-
Add Queuing system, on api request add job in queue response back & let queue add to database.
Use what databases do, they add to file and then from file they push to database.
There could be many other solutions and also maybe above 2 may not work for you perfectly, which solution to choose depends upon what you are doing

Should I use a website form or a diy form program as MySQL front-end? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 4 years ago.
Improve this question
I have a MySQL db that is supposed to store shift details like start time, employee, breaks, nr. of items processed etc. to then analyze this data with MS PowerBI.
The employees are supposed to enter the data themselves after their shift and be separated from the data (not see or change it afterwards).
How should I set up the form the employees enter their data into? Should I make a website with a form on it or should I make a diy program that connects to the db?
I am quite new to all of this so I’m trying to find the best way to complete this.
Thank you very much in advance!
You already have a best guess. Yes, create a website which allows the employee to enter the details, grab the info with a back end application (php/java/kotlin/nodejs/python ... e.t.c), and do not develop a page that retrieve data to the website for the employees.
Afterwards, you can export your data to your desired application (you might need to develop something for smooth data transfer as well)

Search Excel from Html page formula [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am currently working on a project and the end goal is for someone to put in the part specification and then the part number and data comes out. I need help to get my html page to search my excel spreadsheet with the specifications and then spit out the part number and price and data. Here's where my inspiration is coming from http://www.lesker.com/newweb/flanges/nipple_builder.cfm
If anyone can help me with a code to search my spreadsheet I would greatly appreciate it, I'm a bit of a novice
You definitely need a dynamic approach to handle this goal. You can not get HTML to Excel work together and the best alternative is to use PHP+MySQL, upload your database to your web server and query it using php. You will have great difficulties if you use only HTML when it comes to update your items in the list.

Yodlee: Is there any way to get data for a Item with using itemAccountId? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Currently I am integrating Yodlee and looking for getting data for a specific item by using itemAccountId. I am able to do site level refresh and getting data.
Thanks
Guys, May I know the reason for down vote so I can correct my mistakes on next time.
thanks
There is no API to give you data using itemAccountID(i.e. per account) but there is an API which takes itemID(per container) and returns the accounts associated.
Try getItemSummaryForItem1 API.

Email address links for user [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a database system to keep track of students. This is used by a few other people in the office who are not tech savvy.
I need to be able to email about 120 students at one time. Given the character limit on URLs/browsers/what have you, using mailto is not an option; the character count is 2878.
Using a PHP form would make the most sense, but my unsavvy coworkers need to send email from Outlook. Mainly so their sent mail reflects every message they've sent out.
Any ideas?
If the set of recipients is reasonably stable, the standard tool for this is a mailing list. A closed mailing list can be set up on your mail server, or you can use something like Google Groups to create a closed list where people can enroll and unsubscribe as they see fit.
I think you could make it in php sending two emails:
One email to the receiver.
One email to the sender
You just need a rule in every Outlook that put the second email on the sent folder.