Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need a quarter function format like "Q1 2011-12 " like this i need.
Help needed.
Regards,
Madhukumara
Hello,
Try this code i think your looking for this solution only.
LOAD 'Q' & Ceil(Month(DateField)/3) & '-' & Year(DateField)& '-' & Year(YearEnd(DateField,1)) AS QCYrNyr
Hope it helps you.
Cheers !
dateuse (exp for quarter) &'-'& year(date )&'-'& day(date)
Hello,
try this
'Q' & Ceil(Month(DateField)/3) & '-' & Year(DateField)& '-' & Day(DateField) AS CalendarQuarterAndYear
Hope it helps you.
Cheers!
Hi
Try this expression.
='Q'&ceil(month('2012-02-12')/3)&'-'&Yearname('2012-02-12',0,4)
='Q'&ceil(month('2012-02-12')/3)&'-'&Year('2012-02-12')&'-'&Day('2012-02-12')
Regards
Kaushal Mehta
need quarter format like Q1-2011-12 (Q1-yyyy-yy)
Q1-2012-13(Q1-yyyy-yy)
for ur expression i am getting Q1-2011...
i need as Q1-2011-2012, Q2-2012-2013 (Q1-yyyy-yyyy)
Hello,
Try this code i think your looking for this solution only.
LOAD 'Q' & Ceil(Month(DateField)/3) & '-' & Year(DateField)& '-' & Year(YearEnd(DateField,1)) AS QCYrNyr
Hope it helps you.
Cheers !
Thanks Jagan