HelloWorld1
HelloWorld1

Reputation: 14108

Convert data from int to string

If the table is:

Month

1

2

3

4

5

6

7

I need help how to convert it into

Month

January

Februari

May

etc...

The data needed to be converted as a expressen code in the reporting designer interface.

Upvotes: 0

Views: 791

Answers (1)

Fillet
Fillet

Reputation: 1426

Use the MonthName function

=MonthName(Fields!MonthNum.Value)

Upvotes: 2

Related Questions