Wrox Programmer Forums
|
Excel VBA Discuss using VBA for Excel programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Excel VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 12th, 2005, 01:45 AM
Registered User
 
Join Date: Nov 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Excel Addins

Hi, There. I'm trying to convert my text in excel to smallcaps automatically but i couldn't find any addin to do so. the only addin that I found was Zan Zac Utilities(www35.websamba.com/zanzac/) which has many other useful features but there is no other help. Thanks

 
Old November 15th, 2005, 12:42 PM
Registered User
 
Join Date: Nov 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

If you know the range the data will be in you could try writing a macro that will put everything in lower case. You could then take that data and move it to another page or paste it over the original range.

A sample to take Cell A1 to lower case is:
    Range("C2").Select
    ActiveCell.FormulaR1C1 = "=LOWER(R[-1]C[-2])"
    Range("C3").Select





Similar Threads
Thread Thread Starter Forum Replies Last Post
I need a book on C# Addins David_0223 C# 1 May 20th, 2007 09:46 PM
Working with AddIns bdancis Excel VBA 1 February 7th, 2005 03:24 PM
VB6 COM Addins using Excel RefEdit control harnisp1 Excel VBA 0 November 16th, 2004 02:58 AM
Excel in win 2000 to excel winxp (excel 2002) Max Excel VBA 3 August 28th, 2003 04:44 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.