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: 
rajtechnocraft
Creator
Creator

Alternative to inline wizard for creating quarter field from Year dimension

Dear Community,

Just wanted to know the alternative ways to create quarter dimension from Year field..

I have used inline wizard but it takes time to refresh .Just wanted to know if there is an efficient way to do the same so that i can reduce the reload time of the application.

Regards

Arvind

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

   If you have date field, you can use following to get the quarter.

   Load

   DateField,

    'Q' & Ceil(Month(DateField)/3) AS CalendarQuarter

    From xyx.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

   If you have date field, you can use following to get the quarter.

   Load

   DateField,

    'Q' & Ceil(Month(DateField)/3) AS CalendarQuarter

    From xyx.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
rajtechnocraft
Creator
Creator
Author

Dear Kaushik,

Is this much faster than inline wizard i mean from performance point of view

Regards

Arvind