VBA to Change Text to Uppercase, Lowercase or Propercase - Excel VBA Example

Поділитися
Вставка
  • Опубліковано 18 жов 2024
  • This Excel VBA Tutorial explains how to change Text to Uppercase, Lowercase or Propercase. Changing Case in Excel using VBA is easy, fast and timesaving.

КОМЕНТАРІ • 22

  • @mammothadventureracing
    @mammothadventureracing Рік тому +1

    This guy also finds the simplest and least lines to perform the VBA task. Love it!

  • @diedrajohnson3066
    @diedrajohnson3066 Рік тому +1

    You make this feel so easy and uncomplicated!!!! Thank you!!!!

  • @joeyruiz6777
    @joeyruiz6777 4 місяці тому +1

    Easy to follow thank you

  • @jlcourtman
    @jlcourtman 4 роки тому +1

    Excellent - thank you for this excellent tutorial!

  • @birasafabrice
    @birasafabrice 2 роки тому +1

    thank you for this tutorial

  • @cleubercunha
    @cleubercunha 4 роки тому +1

    Very good. Thanks

  • @vijaysahal4556
    @vijaysahal4556 5 років тому

    nice sir yours teaching way gud nd your coading simple but good

  • @saritas485
    @saritas485 4 роки тому +1

    If we want to apply the same in multiple sheets ??

  • @sayeedjamadar7045
    @sayeedjamadar7045 4 роки тому +1

    Sir good morning I need while typing in any case the text should convert to capital case plz suggest me

    • @ExcelDestination
      @ExcelDestination  4 роки тому

      This can be done with some additional VBA Code. Pls share your requirement at exceldestination@gmail.com

    • @LearnWithAmical
      @LearnWithAmical 2 роки тому

      Private Sub Worksheet_Change(ByVal Target As Range)
      If Target.HasFormula Then Exit Sub
      Application.EnableEvents = False
      Target = UCase(Target.Cells(1))
      Application.EnableEvents = True
      End Sub

    • @gaspumprepairservice7009
      @gaspumprepairservice7009 8 місяців тому

      Turn on CAP LOCK?

  • @archanaaa2514
    @archanaaa2514 4 роки тому

    Sir what is private n public in coding parts. What is d use of writing private sub routine? When to use private sub routine n normal sub routine?

    • @ExcelDestination
      @ExcelDestination  4 роки тому

      Private and Public are Object Oriented Programming's concept. Private declaration works within same class and public declaration can allow use of object outside the class or by different class.

    • @archanaaa2514
      @archanaaa2514 4 роки тому

      @@ExcelDestination sir how to do redo in vba code? If something is deleted in excel sheet?

  • @boughararahedi4515
    @boughararahedi4515 5 років тому +1

    Think you ...but this work on Excel version Premium...

  • @prakashbehera4390
    @prakashbehera4390 3 роки тому +1

    How to change without vpa code

  • @saritas485
    @saritas485 4 роки тому

    Got run time error 13