cancel
Showing results for 
Search instead for 
Did you mean: 

How to convert to uppercase if database field date is string?

Former Member
0 Kudos

Using this formula and format object to just display month it's work but i need month to be uppercase.

Date({Table.Month})

This formula work but it just display format 01/12/2015, not just JULY

UpperCase(Totext(Date({Table.DateIn})))

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi,

Try:

Uppercase(totext(date({string_field}), 'MMMM'))

-Abhilash

Answers (1)

Answers (1)

Former Member
0 Kudos

thanks Abhilash.