Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Matching Two Data Providors

Status
Not open for further replies.

ADB1

Programmer
Aug 24, 2001
235
GB
I have 2 data providors in a report from two different databases. They both have the same ID column. What I want to do is flag any rows that appear in both providors. Is this possible?

Cheers.

A.
 
Sorted.....

- Create a variable that will be true only if records do exist on both sources:
True = If ( IsNull(<Revenue>) Or IsNull(<Language>)) Then 1 Else 0
- Insert a filter : Apply on value 0
- Hide the variable True : Format>Table>Pivot Tab>Click True, and then click Hide
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top