Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Sakura
Creator
Creator

need to use column from one excel in other

Like in SQL

Example:

select sum(x), dimID from Fact --- can join to Dim to get dimDesc

select dimID, dimDesc from Dim

My case: 

select sum(x), dimDesc1  from Fact - ExcelSource

select dimID, dimDesc, dimDesc1 from Dim - ExcelSource

I need to know how to get :

select sum(x), dimID from Fact joining on dimDesc1

Kindly help!

2 Replies
Anil_Babu_Samineni

May be this?

Qualify *;

Fact:

select sum(x), dimDesc1  from Fact;

Qualify *;

Dim:

select dimID, dimDesc, dimDesc1 from Dim;

Left Join (Fact)

Load Fact.Sum(x), Dim.dimID Resident Dim where Fact.dimDesc1 = Dim.dimDesc1;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sasiparupudi1
Master III
Master III

Use Applymap

MAP_DESC:

Mapping Load

DimID,

DimDesc

From Your Excel file

Fact

select

sum(x),

ApplyMap('MAP_DESC',DimID,'NA') as dimDesc1 


from Your Excel file

Group By DimID;




hth

Sasi