function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
cinouyecinouye 

Unexpectedly Small Number of Results

Hi,

I installed the Excel Connector in Excel 2003 on a user's computer and all appeared to work until I ran my first query. I ran a query on contacts with no filter and it returned just 24 contacts of a total of around 3,500 contacts. The Account query was similar: 45 accounts returned of 300 expected.

 

1. No Where clause in the Connector.

2. No roles, OWD= all public, profile includes Modify All.

3. User can access all of the records in Salesforce.

4. When I test on my computer (Excel 2007), the same query returns all data.

 

Any ideas or help would be appreciated. Thanks!

AWL-CRMAWL-CRM

Hi,

I've the same problem on my computer.

Installation:
 - Connector: "SForce Office Toolkit 4.0.0.10"
 - Excel: version 2007 with SP2
Connector configuration:
 - Server URL: https://test.salesforce.com/services/Soap/c/16.0

I'm not able to retrieve all records with the Excel connector:

SELECT count() FROM Account a
 -> When executing this query with the Eclipse plugin: 181 records
 -> When using the Excel connector to query the Account table without any clause: "Query : drawing complete, 9 total rows returned"

I found a mean to by-pass this problem: I add a 'fake' clause in the query (e.g. Account ID not equals to nothing).

With this, all records can be recovered into the Excel sheet, but in my own opinion, querying data table without any clause should be the correct solution.

Regards

cinouyecinouye

Thanks for responding.  Glad I'm not the only one.  Last week, I found a similar workaround by adding the Where clause, "Created Date > 1/1/2001"

 

But I agree that there should not need to be a workaround.  Is there a way to report this as a bug?

AWL-CRMAWL-CRM

The right way to report this as a bug may be to post on the project bugtracker.
http://code.google.com/p/excel-connector/issues/list

I don't know if you must be or not a project member for adding a new issue.
I found this one:
http://code.google.com/p/excel-connector/issues/detail?id=30
But this issue seems to be related to integer encoding (32767 = 2^15 - 1) and is probably not linked with our issue.

Regards

jroyaltyjroyalty

I believe that this is related to the date field that is used for the query if you don't add any filters yourself.

 

Just like AWL-CRM described, the best way I've found to bypass it is to do something like "Account ID not equals (blank)".  That will return every record you have, since all accounts have an account ID.

 

(blank) is actually empty, it does accept that.