Excel VBA Introduction Part 53.3 - The Join Function and Concatenating Strings

Поделиться
HTML-код
  • Опубликовано: 6 окт 2024

Комментарии • 10

  • @krn14242
    @krn14242 7 лет назад

    Very useful video. Thanks Andrew

  • @nuhzakir8896
    @nuhzakir8896 7 лет назад

    Nice to subscribe your channel :) I have been learning many things from you and there are many great technics in this video.I have never used these in my life but now i learned them :)
    Thank you so much and best regards!

  • @donbogdala5428
    @donbogdala5428 7 лет назад

    Thanks Andrew!

  • @SantoshKumar-nk1dc
    @SantoshKumar-nk1dc 7 лет назад

    Niec video......

  • @NuffleReza-H
    @NuffleReza-H 5 лет назад

    Thank you for very use full tutorial. I tried this formula and only sometimes I get an error Type mismatch! : Range("A2").Value = Range("C5").Value & " " & Range("C6").Value whixh C5 is a number and C6 is a text.

    • @AmitSharma-po1zb
      @AmitSharma-po1zb 4 года назад

      Try using Cstr before the values of the cell references so that all different data types gets converted to String(similar data) and then concatenation will be done

  • @AmitSharma-po1zb
    @AmitSharma-po1zb 4 года назад

    Hi Andrew, what do we need to do if we do not want to activate the library reference, then do we need to follow the concept of "Create Object" and then prepare the script accordingly ?

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

      Hi Amit, yes that's correct! So instead of, for example:
      Dim fso As New Scripting.FileSystemObject
      Dim ts As Scripting.TextStream
      You would have:
      Dim fso As Object
      Dim ts As Object
      Set fso = CreateObject("Scripting.FileSystemObject")
      I hope that helps!

  • @atifsaeed1692
    @atifsaeed1692 7 лет назад

    Sir,
    How can I modify font size and font color for a Label added by Set A1 = Sheet1.Shapes.AddFormControl(xlLabel, L1 + 2, T1 + 2, 15, 15) command?

  • @Kiikii64
    @Kiikii64 7 лет назад

    How can you do it lets say you want to group the same genre but want the whole row to show all movies in one cell grouped but only show the genre once in one cell.. so List of movies under the Title but the rest only say what it is with one word. Lets say same genre n date n director. Only say it once but gives you a list of all the movies that have all this the same?
    Hope that makes sense.