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: 
Dharanidharan_DD

Help me with the Script

Hi guys.

Need a script to show the max month of the quarter,

example: Considering Today

For   Q1   Mar

For   Q2  Jun

For   Q3  July 

Labels (2)
1 Reply
Rohan
Partner - Specialist
Partner - Specialist

Hello, You can Add :

Month(Quarterend(Date)) as MaxMonth

or use an inline with :

Temp :

Load * inline [

Quarter, QMonth

'Quarter 1', 'Mar'

'Quarter 2','Jun'

'Quarter 3','Sep'

'Quarter 4', 'Dec'];

& then link the quarter with the quarter in your Table & Use the QMonth in the front end where you require.

Regards,

Rohan.