Code for macro to input data from excel to a website and copy the output back into the excel - vba

I am not a coder. Hence i seek help of all the amazing people out here to provide a code .
I want to automate the below steps using macro :
Step 1 : I have a list of street address, zip and city in an excel file. Copy and paste the list in the website : https://smartystreets.com.
Step 2: Click on the process list button
Step 3: Copy the output from the website
Step 4: Paste the output in the excel file
It would be great if someone could help me out with this, as my manager requires it by tomorrow.
Thanks in advance,
Kavya

I recommend checking out iMacro. It's web browser automation extension available on all major browsers (I recommend Google Chrome). As you mentioned you have very little experience coding, you will find recording iMacros to be your best bet.
You may also want to consider editing your post, as the wording will inevitably cause it to get downvoted into oblivion.

Related

Problem when trying to read EXCEL after implementing OFFICE 365 "Confidentiality Label"

I have an ETL routine in PENTAHO and I'm migrating to APACHE HOP.
But I came across a situation, the HOP step/plugin "Microsoft Excel Input" cannot read the data before I open the excel file and click confirm Add Confidentiality Label.
In PENTAHO PDI this problem does not occur, does anyone have any tips?
IMG 1
After clicking and adding a confidentiality label like "public" for example and saving and closing the file, the process works perfectly.
Note: This only happens with some files.
This sounds like a problem that will not have a clear and direct answer and will require some changes in the code.
The code for Apache Hop is managed on Github.
You can create an issue there and one of the developers will help you get this sorted out. When creating a ticket please be as specific as you can be and add a sample, that will improve the chances of getting a fix on short notice.

Google Sheets Security

I've been working on perfecting a couple of my google sheets for work. I need to share it with my coworkers, but I want to find a way to protect my hard work from being copied and repurposed by others.
They need to have edit access, so that eliminates "Disable options to down, print, and copy for commenters and viewers".'
I need to make sure this document doesn't get duplicated a dozen times by everyone the moment I provide them all with edit access. Any advice?
For any of those coming back to this feed, I've created a google script that if someone tries to make a copy of my document, the moment they open their doc, the entire sheet gets wiped (what I like to call 'self destruct').
So it is possible, despite the entire internet and google themselves saying it's not.

VBA Excel lookup same value in different excel files

Would like to check the value from my master file and copy the data comments from different excel files.
In my master I have a column contained all the user name. Would like to copy the address of the user from different excel file. Would like to open the workbook and look through is the user name in the workbook, if not then then exit and open another workbook.
How should I complete the flow ?
Unfortunately StackOverflow is not a free coding service. Our goal is to help you understand how your code works and engage the community with questions that will also help others in the future. Try running some of the code on your own and see what you can come up with. There are hundreds of sources online, one of my favorite being "Excel Easy", a website that breaks down VBA coding to its simplest form. Check it out and then after you've given it a go yourself feel free to ask any specific question about your code!

Convert google sheet to PDF then email daily

does anyone know the google script code so that I can convert a Google Sheet into a PDF then email it to one single email address (mine) at a set time daily?
The information is only in column A and up to row 30 (may increase or decrease depending on the tasks I have on hand - sheet is my task list!)
Not a techie here but know the importance of code in making life more efficient, so I would like to try implementing it myself. Appreciate any help!
Here's a Code may help you it worked great with me !
Github Link
Note: the code make all Spreadsheet into pdf because there's no way to get just a sheet depends my infos if i'm not wrong
if you want to Convert just do this trick:
create another Spreadsheet with one sheet and do import range and don't forget to add the ID of new Spreadsheet on the code !
i had problem like that and this is how i solved it

Importing data from an excel sheet to a web form

I have an excel template on which I would like to validate data entered by users, and on click of a button on the spreadsheet, I'd like to get the entered information on to a 3rd party web form, which is used to keep track of the user input.
Is this possible using macros/vba for MS Excel 2010? If yes, I would like some help with the code as well...
Yes, this sort of thing is possible. Before we start giving you code, we will need to see what you have done, know what you are trying to accomplish, and what the errors are.
Because it appears that you are just getting started down the road of IE Automation here are a few websites I used initially to get started.
http://www.excely.com/excel-vba/ie-automation.shtml
http://www.makeuseof.com/tag/using-vba-to-automate-internet-explorer-sessions-from-an-excel-spreadsheet/
https://msdn.microsoft.com/en-us/library/aa752084(v=vs.85).aspx
I hope this helps you get started too.