Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
asknyldz
Contributor III
Contributor III

Joinning 3 Tables and missing data

Hi everyone.

I'm joinning 3 table and then there is missing data. I see only one rows value in totals. You can below data and script.

MercuryData:

SEGMENTBUSINESS UNITSPECIALTYTYPEMONTHAMOUNT
Risk ManagementMcsPropertyACTUALApr-19600
Risk ManagementMcsPropertyACTUALFeb-19

600

 

Script;

LOAD
[SEGMENT],
[BUSINESS UNIT],
[SPECIALTY],
[TYPE],
[MONTH],
[AMOUNT]
FROM
[MercuryData.xlsx]
(ooxml, embedded labels, table is [MercuryData]);

JOIN

LOAD
[SEGMENT],
[BUSINESS UNIT],
[SPECIALTY],
[Team],
UPPER([Team]) as Team_SA
FROM
[MarshForce.xlsx]
(ooxml, embedded labels, table is [MappingMer]);

LOAD
[Opportunity Value (converted)],
[MF_Business Unit],
[Product Line],
[Line of Business],
[Line of Coverage],
[Weighted Amount (converted)],
[Close Month] as [MONTH],
[Funnel Stage],
[Team]
FROM
[MarshForce.xlsx]
(ooxml, embedded labels, table is [MFData]);

 

2 Replies
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Can you provide a sample qvw?

Brett_Bleess
Former Employee
Former Employee

Askin, if you are not able to attach QVW as Arthur had requested, this is going to be tricky at best to try t help.  About the best I can offer is some troubleshooting advice, which is to load each of those tables separately in a new QVW file, one QVW for each source, so you can check the contents of the load to ensure everything you expect to be there is there.  That way you know the source info is good and the issue is in the Join etc.  

Here is a Design Blog post related to Joins, might be of some use as well:

https://community.qlik.com/t5/Qlik-Design-Blog/To-Join-or-not-to-Join/ba-p/1463102

About the best I have for the moment to try to help you move things forward.

Regards,
Brett

To help users find verified answers, please do not forget to use the "Accept as Solution" button on any post(s) that helped you resolve your problem or question.
I now work a compressed schedule, Tuesday, Wednesday and Thursday, so those will be the days I will reply to any follow-up posts.