Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I need to display month and year at X-Axis in Bar Chart, for last three years.Eg;Jan-2012....Dec-2012 .I need to take Calculated Dimension.Having Field as TP_APPR_DT in numeric format.
Please anyone suggest me how to solve it.
Thanks & Regards
Krishna
Hi Kalyan,
Try like this
=if(year(TP_MonthYear)>='2012',Date(TP_MonthYear,'MMM-YYYY'))
or
=if(year(TP_MonthYear)>='2012',MonthName(TP_MonthYear)) and check the suppress null.
please find the attachment for the same
Hi,
Can you attach sample data with expected output.
Regards
ASHFAQ
Dear Mohammed,
Please find the attachments,and guide me how to solve it.
Regards
Krishna
Hi,
Use dimension as Floor(TP_APPR_DT )
Regards,
Kaushik Solanki
Hi Kalyan,
Try like this
=if(year(TP_MonthYear)>='2012',Date(TP_MonthYear,'MMM-YYYY'))
or
=if(year(TP_MonthYear)>='2012',MonthName(TP_MonthYear)) and check the suppress null.
please find the attachment for the same
Try this instead of if condition
Monthname(TP_MonthYear)
Thank You Avinash
Regards
Krishna