Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Converting numbers to month

Hi all i have month i have month field it was shows numbers like

Month

1

2

3

4

5

6

7

8

9

10

11

12

it numbers convert to January,February,march.....

pls help me thanks in advance.

5 Replies
tresesco
MVP
MVP

Try like:

Load

          Month(MakeDate(1,Month)) as Month

Anonymous
Not applicable
Author

not working bro

tresesco
MVP
MVP

SET MonthNames='January;February;March;April;May;June;July;August;September;October;November;December';

Load

         Month as MonthNum,

        Month(MakeDate(1,Month)) as Month

;

Load * Inline [

Month

1

2

3

4

5

6

7

8

9

10

11

12];

Capture.JPG


Anonymous
Not applicable
Author

LOAD

* INLINE [

    Month

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

];

load Month(MakeDate(1,Month))as month

Anonymous
Not applicable
Author

its working

Thanks bro