Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
cristian_av
Creator III
Creator III

Expand data in months to compare with days

Hi

I have two data sources:

a) One wich has information from a system that reads hundreds of records per day, and wich stores the data as following:

23/12/2014     Name1     OtherFields

23/12/2014     Name2     OtherFields

...

(Hundreds of records)

b) a Planning from the total of records by month:

December     4000

January     3400

February     6000

I have a master calendar wich has dates, months, and others.

But how can I compare this kind of data??

Thank you!

1 Reply
Anonymous
Not applicable

Hi Try this

Test:

Date              Name       OF

23/12/2014     Name1     OtherFields

23/12/2014     Name2     OtherFields

Test2:

Month         Amt

December     4000

January     3400

February     6000

load

left(MonthName(date),3) as New_Date,

Date,

Name,

OF

resident Test;


drop table Test;


left join

load

left(Month,3) as New_Date

Amt

resident Test2;

Regards

Harsha