How to convert Month no. into month name

here I need to convert Month No. 1 - 12 into Month Name Jan - Dec

Hi,

You can create a calcualted field to represent the month name. If your current Month field (MonthID) is an integer:
ifelse(MonthID = 1, ‘January’, MonthID = 2, ‘February’, …‘December’).

Use this new field in your graph.

Thanks,
Asem.

but the Month ID is an calculated field

Hi @Hemant_rangdal
You can use calculated field also in this case like below:

image

You can then replace your “Month ID” field with “Month Name” calculated field, It will look like below:

Thanks

1 Like

Thanks You Vaibhav, it worked.!.

1 Like