Amazon References

Showing posts with label CSV. Show all posts
Showing posts with label CSV. Show all posts

Monday, December 5, 2016

Generating Personalized Letters Using CSV Data From Google Spreadsheets

Google Spreadsheets are great for collaborative number crunching. Much like Microsoft Excel, Google Spreadsheets allow you to produce financial models, analyze numerical data, keep track of accounts, etc. But what if you want to produce and deliver documents of a different nature, like letters to various recipients, based on the data contained in a Google Spreadsheet? Instead of going through each row of the spreadsheet one at a time and plugging data into a document template manually, you can use WebMerge to pull data from the spreadsheet and automatically fill in a template document, perhaps, to be delivered in PDF form to certain recipients!

"How can I do this?" you might ask. Don't worry! We’ll walk through the process in the tutorial below.

First, we’ll need to have a document ready for merging on WebMerge. In this example, let’s say we want to send students a report card based on data we have in a Google Spreadsheet. In the spreadsheet we have the students’ names, their email addresses, and their GPAs.

We first go to WebMerge and upload or create a new document in the Document Builder. The document we are about to upload or create is the document that will be automatically populated with the data from our Google Spreadsheet. Our merge document might look something like the following. The following is an example of a cover letter with merge-fields for the students’ names and the students’ GPAs. The merge fields will get populated with the data in our spreadsheet.

Image of Document Builder for Report Card Cover Letter

After we have our document template on WebMerge, we want to: make sure our configuration settings are how we want them, test our document, and set up delivery.  Notice that in the delivery setup, we specify an <<other>> merge field. We didn’t create a merge field for the students’ email addresses, but we want to use the email address column in our spreadsheet to specify our email recipients.

Specify the Merge Field for Emailing

The above shows that we want to send the document to recipients according to a merge field that wasn’t in our document and has as yet to be specified. We want to send emails to the addresses in the email address column of our spreadsheet, so we specify that we want to create a new merge field called Email_Address and use it as a placeholder for the email addresses in our spreadsheet. In the next step we will match this placeholder as well as the placeholders in our document with the data we get from a CSV version of our spreadsheet.

Now that we have made our document template and have saved our delivery method, we need to pull the information from our Google Spreadsheet. The easiest way to do this is to simply download the spreadsheet as a CSV file.

Image of Google Spreadsheets Download as CSV

Once we have downloaded our data as a CSV file, we can upload that to WebMerge.

Image of WebMerge Upload Data as CSV

Upload the data, then in our final two steps we map the merge fields to the columns of our spreadsheet and send our newly created documents off to our recipients.

Image of WebMerge Map CSV Data to Document Merge Fields

Click Merge the Data!

Image of WebMerge Merge the Data Button

Congrats! You just merged your Google Spreadsheet data with a document template and sent it to all the relevant recipients.

Image of End Result of WebMerge and Google Spreadsheets Combination

Want to do more with WebMerge? Check out all the ways you can streamline your documentation process today!

Suggested Posts: 

Take Your Mail Merge Online

New: Merge Excel Spreadsheets on the Fly

10 signals Your advertising team Have Outgrown Excel Planning



Friday, December 2, 2016

Take Your Mail Merge Online

Mail Merge in MS Word has long been one of the most popular and widely used features of the office tool, but how often do you send letters anymore?  Today, it’s much more common to generate Word or PDF documents using Mail Merge and send them via email.  What if you needed to do more?  For example, what if you wanted to send those documents out for e-signature?  Or save them in the cloud?
 
WebMerge has got you covered!  In addition to using MS Word document as templates, you can upload a fillable PDF or even build your own document using our online editor.  From that point you can setup your delivery method, which could be via email, an e-signature platform, the cloud, or to another 3rd party via a webhook.
 
Once you have the document and delivery options setup, the last piece of the puzzle is uploading the mail merge information.  You can do this using a CSV file (which stands for comma separated values) that you can save directly from Excel.  After you upload the information, we’ll merge your documents and send them out!
 
Imagine you were at a tradeshow and you collected information from 100 potential customers. You collected their name, email address, and which products they were interested in purchasing.  You saved all of this information in a spreadsheet.  Now that the trade show has ended, you’d like to follow up with each of these prospects and send them a proposal that includes information about each of the products they were interested in as well as the pricing.  All you need to do is create a new WebMerge document for the proposal that includes the prospect’s information and uses Conditional Sections to include the products they were interested in.
 
Once you build the document, simply upload your spreadsheet and we’ll send your customized proposal to each of the prospects.  You could do all of this in as little as 30 minutes.  Think of how long it would take you to manually create all of these proposals!  If you need to mail the proposals, check out our integration with Lob
 
Can you think of any other areas of your business that you could automate by using an online mail merge?


Tuesday, November 15, 2016

The way to write data to Excel/CSV in Jmeter the usage of BeanShell scripting?

You may have faced considerations in writing facts to excel/csv in JMeter. during this blog post, we can see how to write facts to Excel/CSV in Jmeter using BeanShell scripting? by using typical Expression Extractor, you can extract statistics from the response. to write extracted data to excel/csv in Jmeter, you need to use BeanShell PostProcessor sampler.
a way to extract data from the response?
you can refer my slideshare presentation on how to extract information from the response.
the way to write information to excel/csv in JMeter using BeanShell PostProcessor?
Add Thread community and then right click on Add > post Processor > BeanShell PostProcessor as proven below.
[auto_thumb width=”150″ height=”150″ link=”” lightbox=”true” align=”center” title=”How to write data to Excel CSV in Jmeter using BeanShell scripting – Add BeanShell PostProcessor” alt=”How to write data to Excel CSV in Jmeter using BeanShell scripting – Add BeanShell PostProcessor” iframe=”false” frame=”true” crop=”true”]http://qainsights.com/wp-content material/uploads/2013/09/How-to-write-statistics-to-Excel-CSV-in-Jmeter-the use of-BeanShell-scripting-Add-BeanShell-PostProcessor.jpg[/auto_thumb]
E.g. to write down Order Reference number to CSV/Excel file, paste under code to your BeanShell scripting as proven below.
refnum = vars.get("Reference_Number"); log.information(refnum); // in case you are looking to log something to jmeter.log file // flow authentic if you are looking to append to present file // in case you need to overwrite, then do not circulate the 2nd argument f = new FileOutputStream("yourpath/influence.csv", authentic); p = new PrintStream(f); this.interpreter.setOut(p); print("Reference number is," + refnum); f.shut();
[auto_thumb width=”150″ height=”150″ link=”” lightbox=”true” align=”center” title=”How to write data to Excel CSV in Jmeter using BeanShell scripting – BeanShell PostProcessor Sample Code” alt=”How to write data to Excel CSV in Jmeter using BeanShell scripting – BeanShell PostProcessor Sample Code” iframe=”false” frame=”true” crop=”true”]http://qainsights.com/wp-content material/uploads/2013/09/How-to-write-facts-to-Excel-CSV-in-Jmeter-the use of-BeanShell-scripting-BeanShell-PostProcessor-sample-Code.jpg[/auto_thumb]
Thanks for traveling QAInsights! check out our new portal Testifications.com to get updates on application checking out related certifications. We’re always posting unique articles on QAInsights. I request you to subscribe so you don’t omit out the rest.
looking for QA Jobs Openings, determine it at www.QAJobOpenings.com
wish to beginning a weblog like this, please consult with SpidyDomain to buy inexpensive net internet hosting and register domain.
Subscribe to our QAInsights YouTube Channel | Subscribe our free weekly e-newsletter or Google feeds

Friday, October 14, 2016

Microsoft Excel CSV import fails to import the distinctive enumerated values to Rational doorways

difficulty(abstract)
When a Microsoft Excel CSV sheet (with dissimilar enumerated values separated with the aid of a semi-colon) is imported to Rational doorways; the dissimilar enumerated values are handled as a single string.
Symptom
The assorted enumerated values are displayed in a single string after the import
trigger
Rational doorways fails to discover the numerous enumerated values in Microsoft Excel CSV right through the import.
ambiance
Microsoft windows, Rational doors - All models, Microsoft office - All types
Resolving the problem
with the intention to overcome this, please separate the distinctive enumerated values in the Microsoft Excel CSV (comma separated cost) sheet after which make the quintessential environment changes in Rational doors as described beneath in order that Rational doorways recognizes them as an enumerated Multi-valued attribute.
that you could separate these values within the Microsoft Excel CSV sheet by using the key combos ALT+ENTER to fill diverse values in a single mobile and then retailer the spreadsheet in CSV structure.
subsequent, make the indispensable settings alterations in Rational doors earlier than the import. For that follow the steps beneath:
1. Create an attribute of classification "Enumerations" in Rational doors.
2. deliver the equal values which are there within the Microsoft Excel CSV spreadsheet.
3. whereas, creating an attribute on the basis of class "Enumeration", select the option of "Multi-valued".
4. Now try importing the Microsoft Excel CSV spreadsheet.

Related products

Scheduler123: Excel-based Production Scheduling System

The Excel Nexus