Forum Discussion
markikav1955
Sep 22, 2021Brass Contributor
Capitalise Month as text in concatenated field
Hi Community
I have a unique reference field created by concatenating a date field and a text field, but would like the month to print in capitals.
I have this formula but the month won't capitalise?
="CR"&TEXT([Review Date],UPPER("ddMMM"))&[Credit Ref]
this gives an output such as "CR21Sep12345678" , but I want "CR21SEP12345678"
Thanks!
markikav1955 the formula should be ="CR"&UPPER(TEXT([Review Date],"DDMMM"))&[Credit Ref]
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
2 Replies
- RobElliottSilver Contributor
markikav1955 the formula should be ="CR"&UPPER(TEXT([Review Date],"DDMMM"))&[Credit Ref]
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)- markikav1955Brass ContributorThank you very much Rob!