Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
It is due to the null values you just need to exclude null values try the below code
If(isnull(DateColumn) = 0, 'Q' & Ceil(Month(Date(DateColumn))/3)) as Quarter by this you exclude null values.
Regards,
Anand
Hi,
It is due to the null values you just need to exclude null values try the below code
If(isnull(DateColumn) = 0, 'Q' & Ceil(Month(Date(DateColumn))/3)) as Quarter by this you exclude null values.
Regards,
Anand
Thankx!