Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
rajtechnocraft
Contributor III
Contributor III

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
Contributor III
Contributor III
Author

Dear Kaushik,

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

Regards

Arvind