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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kiranpatil123
Contributor III
Contributor III

Fiscal Month - Help

Hi All , 

i have the below table and need to achieve the last column 

As of now iam showing  Year of Created Date - Fiscal Week - Fiscal Month Name and showing the column "As of now we are showing"

Requirement is we need to show Month based on Fiscal Month . How do i achieve this in script please help ( with script needed ) and i can import this excel file to achieve this

 

 

Week dayCreated DateFiscal weekFiscal MonthFiscal MonthFiscal Month NameAs of now we are showingNew requriment - Based on Fiscal Month
Sunday27-Jan-195January1January2019- Week 5 - Jan2019- Week 5 - Jan
Monday28-Jan-195January1January2019- Week 5 - Jan2019- Week 5 - Jan
Tuesday29-Jan-195January1January2019- Week 5 - Jan2019- Week 5 - Jan
Wednesday30-Jan-195January1January2019- Week 5 - Jan2019- Week 5 - Jan
Thursday31-Jan-195January1January2019- Week 5 - Jan2019- Week 5 - Jan
Friday1-Feb-195January2February2019- Week 5 - Feb2019- Week 5 - Jan
Saturday2-Feb-195January2February2019- Week 5 - Feb2019- Week 5 - Jan

 

 

 

Labels (2)
1 Reply
rammarthi
Creator
Creator

Test:
LOAD [Week day],
[Created Date],
[Fiscal week],
[Fiscal Month],
[Fiscal Month1],
[Fiscal Month Name],
[As of now we are showing] as Now,
[New requriment - Based on Fiscal Month] as Req,
YEAR([Created Date])&'- Week '&[Fiscal week]&' - '&Left([Fiscal Month],3) as [Requirement Fullfilled]
FROM
[\\ns-sisci01hd\home_s01\Citrix_Folder_Redirect\Downloads\New Microsoft Excel Worksheet.xlsx]
(ooxml, embedded labels, header is 1 lines, table is Sheet1);

 

T1.PNG