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

Quarter Generation Problem

Hi All,

I have problem when i generate Quarter at load wit this syntax:-'Q'&CEIL(MONTH(DATE([Evaluation Date]))/3) as Quarter. it creates three quarters like

Q,Q1,Q2,Q3,Q4 but here Q is unnecesary please tell me how to remove it from Quarter list..

Anand

Regrds

2 Replies
danielrozental
Master II
Master II

you probably have null values in Evaluation Date field.

Try avoiding them like this if(not isnull([Evaluation Date]),'Q'&CEIL(MONTH(DATE([Evaluation Date]))/3)) as Quarter

Not applicable

Hi

Maybe the 'Q' value is being concatenated with a null date field.

Try:

IF(ISNULL([Evaluation Date]) = 0, 'Q' & CEIL(MONTH(DATE([Evaluation Date]))/3) ) as Quarter