Tidying / Formating Salesforce Formulas - formatting

I am looking for a way to Tidy/Format Salesforce formulas. I know that there is a chrome extension that let's you do that, but it only works in the Edit mode. However when you are in the read-only mode, it displays the Formula as a long text without any Formatting, or Indentation.
Is there Atom plug-in that will allow me to Format / Tidy Salesforce Formulas?

Found two atom packages that will tidy/pretty/format Salesforce formulas:
https://atom.io/packages/auto-indent
https://atom.io/packages/bracket-colorizer
Combined, these two packages will provide Salesforce Formula Pretty for Atom

Related

Why am I not able to paste copied queries into BigQuery?

I am currently taking Google's Data Analytics course, I'm enjoying it well and am able to troubleshoot most issues on my own. One issue I keep running into is that I am never able to PASTE any of the queries from the lessons into BigQuery's SQL editor. I'm having no issue copying, but I've never been able to successfully paste a query. I've tried writing them myself; to varying degrees of success. However, at this point I can't keep dancing around my lack of understanding. Any help is appreciated.
I've had exactly the same problem while trying to copy and paste from and to Bigquery while taking Google's Data Analytics course.
This issue of not being able to paste only happens to me when I compose new query and line 1 is blank.
One way to get around it that works for me is to type anything on line 1 and to paste your text on line 2 and onwards. Delete line 1 and you should be able to run it without any issues.
Use Shortcut commands Ctrl+V - or command+V,to paste the text into BigQuery after copying it.
cheers.

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

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.

Interactive editable spreadsheet in Google Docs

I have created a spreadsheet in google docs. The spreadsheet takes some input, calculates some results, and displays the results numerically but also as a graph.
I would like to publish this spreadsheet, so that anyone can input and get the results and the graphs. I tried the Publish to the Web option (from File Menu), but the spreadsheet becomes static (no calculations possible on new values)
I tried the Share option. However when choose anyone can view the spreadsheet is not interactive. When i choose the anyone can edit option the file is usable, but my concern is that if I publish this on the internet and 2 users want to calculate simultaneously based on different values it will mix things up.
Is there anyway to accomplish what I require without setting up a website or programming in Javascript? I do not need to protect any of the calculation routines, I only require that the spreadsheet starts everytime with the default settings, the edits are not saved and the spreadsheet is interactive.
Seems like you may want to publish your Google Sheet as a template. Doing so will let strangers "deploy" a copy of your spreadsheet, for their own use (and without conflicting with other web users).
Google Docs template gallery
Instructions for submitting a template
Caveat: Until Google adds support for publishing "new" Google Sheets as templates, you'll likely want to submit a spreadsheet in the "old" format.
I might suggest using Protected Ranges.
https://drive.googleblog.com/2012/08/lock-down-cells-with-protected-ranges.html
Basically locked cells and you should be the only one able to manipulate the locked cells to you can freely set the page to be editable.
You can also specify the Range of cells that you wish to use when embedding. (See the publish options).
These two methods should help you with your project.

How to read changes in excel file into vb.net application

I have an excel file which is auto generated by third party software..and its readonly file and its data constantly keep changing online.
now i want to use or read that data in my vb.net application whenever its changes take place in excel file automatically.
please help me..
Cody's right. No question, but I'm guessing you're looking to do something along these lines.
First, you'll need to pull down a copy of that XLS file (sounds like it's online at a website somewhere). To do that, you'll need to perform a pretty normal HTTP get or use whatever API the website provides to pull the file down.
Save the file locally, then open it and read it using EXCEL AUTOMATION. Just google excel automation for loads of examples of opening a worksheet file, reading cell values, and closing the file.
There's other options too such as the OpenXML api from Microsoft to allow you to read the contents of XLSX files directly without using excel automation, so that may be a possibility. not enough in the original post to know which would work best for you.

Automating site interaction

I'm working with a CMS and need to import data to it using typical html forms. The data itself is in csv files with one page per row. Such is the CMS that importing directly to db isn't possible due to the complexity of the design. It's pretty important that i "fake" usual user interaction because the CMS does a lot of background work that's crucial for the import.
Basically, for each row in the csv file, I need to copy a csv column to a html textfield, or select a checkbox, or click a certain button. One major issue is mapping the data in the csv to actions in the CMS. So if one column contains the string 'foobar' is really means "set the firstName dropdown widget to 'foobar'".
Is there a tool to automate this? I´ve been looking at AutoHotKey, Selendium, Web-Harvester and many other tools but I'm not convinced they are the correct tools. The main problem is being able to interact with the html pages in a easy way.
There are a bunch of tools that do that. Visual Studio Team Test Edition will do this by recording your actions and allow you to modify the resulting C# programming. You can then read from your CSV and replay in a loop.
You can also do this relatively easily if your interface doesn't change much using HTML Agility Pack.
Also I've written regular C# ( HttpWebRequest and Regex ) programs to do this and it's not very difficult either.