Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to compare data between two qvd

how to compare data is same between 2 similar qvd files

10 Replies
ramasaisaksoft

use "qualify"

now 2 tables are different

now create the  variable

Let  vNoofrows1 = NoOfRows('TableName1')

Let  vNoofrows2 = NoOfRows('TableName2')


these will give the no of rows from each table

if u want to compare field wise

count (distinct(t1.id) )

count (distinct(t2.id) )


just do like this and check by column wise, but it is a manual work