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

Поделиться
HTML-код
  • Опубликовано: 6 сен 2019
  • 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!

  • @joeyruiz6777
    @joeyruiz6777 Месяц назад +1

    Easy to follow thank you

  • @diedrajohnson3066
    @diedrajohnson3066 Год назад +1

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

  • @jlcourtman
    @jlcourtman 4 года назад +1

    Excellent - thank you for this excellent tutorial!

  • @cleubercunha
    @cleubercunha 3 года назад +1

    Very good. Thanks

  • @birasafabrice
    @birasafabrice Год назад +1

    thank you for this tutorial

  • @vijaysahal4556
    @vijaysahal4556 4 года назад

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

  • @saritas485
    @saritas485 3 года назад +1

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

  • @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?

  • @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 4 месяца назад

      Turn on CAP LOCK?

  • @prakashbehera4390
    @prakashbehera4390 3 года назад +1

    How to change without vpa code

  • @boughararahedi4515
    @boughararahedi4515 4 года назад +1

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

  • @saritas485
    @saritas485 3 года назад

    Got run time error 13