...
Download it here https://www.microsoft.com/en-au/download/details.aspx?id=39379
Note, it does get updated often, so if you have downloaded it previously, then re-download it again.
Introduction
See this video
...
- Reports have a limit of 2000 rows. Objects don't
- You can't do SOQL queries (Or can you? Maybe you can).
Technical
Getting an object from Salesforce does a REST query on the Salesforce database.
https://na12.salesforce.com/services/data/v29.0/sobjects/Contact/describe
Notice that is uses v29.0 not v33.0 that we are (as of today) up to.
You can enter that query into the rest explorer in workbench to see what it does.
So technically you think you could do custom SOQL queries via the rest API. I'm sure there is a way to do it but the articles that I've seen only relate to non authenticated APIs.
Issues
- Of course you can only use this if you have the APIs enabled (from Professional Edition, if you pay, up to Enterprise, Developer and Ultimate).
- Beware of security. DO NOT LOG INTO EXCEL AS AN ADMINISTRATOR! All of your data is then visible in Excel by anyone who opens up your PC. Use an Integration account that specifically only has read only access to the data you need it to have access to.
- The user remains logged in when you close excel, so it is logged in next time you open excel.
- Attachment object is not supported.
Related Articles
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|
...