 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Access reports dropping data included in query</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 10:59:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: osbornisle59</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-114098</link>
		<dc:creator>osbornisle59</dc:creator>
		<pubDate>Fri, 07 Dec 2012 14:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-114098</guid>
		<description><![CDATA[&lt;p&gt;PK is phone number&lt;/p&gt;&lt;p&gt;&#160;&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>PK is phone number</p>
<p>&nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113910</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Sun, 02 Dec 2012 09:48:42 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113910</guid>
		<description><![CDATA[PK would be the Primary Key. I don&#039;t see much point in grouping by the primary key, especially if you want to group by LastName (unless LastName is the PK). -- Tom]]></description>
		<content:encoded><![CDATA[<p>PK would be the Primary Key. I don&#8217;t see much point in grouping by the primary key, especially if you want to group by LastName (unless LastName is the PK). &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113908</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Sun, 02 Dec 2012 08:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113908</guid>
		<description><![CDATA[First, remove the HAVING clause. There is the possibility that the other two groups of &#039;Thomas&#039; names calculate a balance of zero. If they show up when that HAVING clause is gone, verify their balances and decide if you want them included or not.&#160;After that, the other possibility&#160;seems to be&#160;that those rows&#160;also have the same FirstName, HomePhone, Balance, LastPayment, LastPayAmt&#160;and Notes; but you already said the have different FirstNames. -- Tom]]></description>
		<content:encoded><![CDATA[<p>First, remove the HAVING clause. There is the possibility that the other two groups of &#8216;Thomas&#8217; names calculate a balance of zero. If they show up when that HAVING clause is gone, verify their balances and decide if you want them included or not.&nbsp;After that, the other possibility&nbsp;seems to be&nbsp;that those rows&nbsp;also have the same FirstName, HomePhone, Balance, LastPayment, LastPayAmt&nbsp;and Notes; but you already said the have different FirstNames. &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: osbornisle59</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113898</link>
		<dc:creator>osbornisle59</dc:creator>
		<pubDate>Sat, 01 Dec 2012 19:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113898</guid>
		<description><![CDATA[SELECT [Tracking Information].LastName, [Tracking Information].FirstName, [Tracking Information].HomePhone, [Tracking Information].Balance, [Tracking Information].LastPayment, [Tracking Information].LastPayAmt, [Tracking Information].Notes, Sum([Tracking Information].Balance) AS [sum of balance]FROM [Tracking Information]GROUP BY [Tracking Information].LastName, [Tracking Information].FirstName, [Tracking Information].HomePhone, [Tracking Information].Balance, [Tracking Information].LastPayment, [Tracking Information].LastPayAmt, [Tracking Information].NotesHAVING ((([Tracking Information].Balance)&lt;&gt;0))ORDER BY [Tracking Information].Balance;]]></description>
		<content:encoded><![CDATA[<p>SELECT [Tracking Information].LastName, [Tracking Information].FirstName, [Tracking Information].HomePhone, [Tracking Information].Balance, [Tracking Information].LastPayment, [Tracking Information].LastPayAmt, [Tracking Information].Notes, Sum([Tracking Information].Balance) AS [sum of balance]FROM [Tracking Information]GROUP BY [Tracking Information].LastName, [Tracking Information].FirstName, [Tracking Information].HomePhone, [Tracking Information].Balance, [Tracking Information].LastPayment, [Tracking Information].LastPayAmt, [Tracking Information].NotesHAVING ((([Tracking Information].Balance)&lt;&gt;0))ORDER BY [Tracking Information].Balance;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: osbornisle59</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113897</link>
		<dc:creator>osbornisle59</dc:creator>
		<pubDate>Sat, 01 Dec 2012 19:46:31 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113897</guid>
		<description><![CDATA[What is PK?&#160; I inherited this database and am not that good at it!]]></description>
		<content:encoded><![CDATA[<p>What is PK?&nbsp; I inherited this database and am not that good at it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnKennedy</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113895</link>
		<dc:creator>JohnKennedy</dc:creator>
		<pubDate>Sat, 01 Dec 2012 11:27:25 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113895</guid>
		<description><![CDATA[I think u should not use SELECT *, distinct(Lastname) FROM tablename .....;this but if it would be easier to help someone who given
 the sql statement. If you have used the basic Ms Access Query, then you
 need to specify; it is also easy to execute directly.Just use something like this; Select * From Tablename Where Tablename.Fieldname&lt;&gt;0 Group By Phone No.]]></description>
		<content:encoded><![CDATA[<p>I think u should not use SELECT *, distinct(Lastname) FROM tablename &#8230;..;this but if it would be easier to help someone who given<br />
 the sql statement. If you have used the basic Ms Access Query, then you<br />
 need to specify; it is also easy to execute directly.Just use something like this; Select * From Tablename Where Tablename.Fieldname&lt;&gt;0 Group By Phone No.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113850</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Fri, 30 Nov 2012 06:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/access-reports-dropping-data-included-in-query/#comment-113850</guid>
		<description><![CDATA[We need to see the query statement in order to know. There are various possibilities. Please show the statement. -- Tom]]></description>
		<content:encoded><![CDATA[<p>We need to see the query statement in order to know. There are various possibilities. Please show the statement. &#8212; Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.015 seconds using memcached
Object Caching 352/355 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-24 11:28:58 -->