traba5058 Posted September 11, 2018 Share Posted September 11, 2018 Hi All! We have 60 formatted text resources in a business card template. The customer has decided they want to change everything to all caps now. We tried updating our rule to include case but it didn't work. if (Field("Location")=="La Praire") return '<allcaps>'+Resource("La Praire")+'</allcaps>' Is it possible to incorporate changing the case in our address rule that returns the resource or do we have to update every text resource? I appreciate any help. Traba Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted September 11, 2018 Share Posted September 11, 2018 This will probably work: return ToUpper(Resource("La Praire").content); Or, if you already have a Switch rule (or another kind of rule) that's returning Formatted Text Resources, you can just call out that rule from another rule that puts it in all caps, something like: return ToUpper(Rule("Address").content); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.