Excel Wildcard Characters in Formulas

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

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

  • @Stock_Market_Baadshah
    @Stock_Market_Baadshah 2 месяца назад

    Very well explained and very informative. Thanks Man

    • @Computergaga
      @Computergaga  2 месяца назад +1

      Thank you. Much appreciated.

  • @joem112
    @joem112 7 лет назад +2

    Great tip. Been using VLookup for years and never knew!

  • @SanjayKumar-yx6gc
    @SanjayKumar-yx6gc 7 лет назад +1

    Awesome & unique examples of wildcard characters, I have never seen before use to "*" in vookup value. Thanks you so much.

  • @lynxwomancat
    @lynxwomancat 6 лет назад +1

    Another lesson learned! Thanks, Alan!

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

    Awesome ! Very Well explained !! Thank you very much Alan!!! 😃

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

      My pleasure! Thank you Patricia.

  • @javedahmed8343
    @javedahmed8343 10 месяцев назад

    Wonderful explanation

  • @JG-yg1gw
    @JG-yg1gw 4 года назад

    Great man! Super clearly explained!

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

    Utterly brilliant, you have a gift mate . I seriously recommend you to pursue a career in teaching if you aren’t already one

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

      Thank you, Antonio. Much appreciated.

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

      Could you please do a video on the If functions and the multiple application of it

  • @bje2839
    @bje2839 5 лет назад

    Trying to do something similar to your "Partial Match vlookup" tab.
    My scenario has short one or two word lookup in A2:B10 Cells D3 down to ~D1000 have longer phases like: "I would love to live in Liverpool, UK" or "I just came from Hamburg, Germany and had a blast". Return in cell E3 down to ~E1000, 24 for Liverpool, UK and 12 for Hamburg, Germany and so on... Basically trying to use A2:B10 as a lookup, displaying column B in column E where column A exists in column D.
    Been searching or days, and your example is the closes so far to what I'm trying to accomplish.
    Thanks in advance.

  • @daryldejong5207
    @daryldejong5207 Год назад

    thanks lad

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

    can you please guide? How can I use vlookup in opposite situation

  • @sasavienne
    @sasavienne 5 лет назад +1

    Thank you so much Alan.
    I need a vba code which can loop through all your videos and writes a nice comment beneath every one of them. 🌟 🌟 🌟 🌟 🌟

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

    Great example of wildcard character, thank you
    What about ~?

    • @Computergaga
      @Computergaga  7 лет назад +1

      Thanks Abdelrahman, yes I ignored the tilde ~ for these examples as I do not find it as beneficial as the ? and the *. It is in very rare instances that the Tilde is used. It means to treat a wildcard such as the * as a character and not a wildcard.

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

      Thank you

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

      Your welcome Abdelrahman.

  • @samipiyash9322
    @samipiyash9322 5 лет назад

    very good tutorial

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

    Great tutorial but how do you use a wildcard character in an =if(or statement?
    For example when you are referencing an empty cell or a cell with a specific character in it?

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

      Thank you, Frank. I have a video on using IF for specific characters here - ruclips.net/video/0_IGpT0bYZY/видео.html
      Need to use the FIND or SEARCH functions instead of wildcards.

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

    your explanation is very clear. It would be great if you help me in blow query

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

      Thank you. The video does include an example with VLOOKUP.

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

    nice video

  • @kpeyialale1104
    @kpeyialale1104 Год назад

    The video is okay. Just that the text in the video are blurry. can't really see the formula you are inputting

    • @Computergaga
      @Computergaga  Год назад

      Thank you. The blurry sounds like a streaming issue.

  • @hazemali382
    @hazemali382 5 лет назад

    graet video

  • @jayjayf9699
    @jayjayf9699 6 лет назад

    why doesnt this work? =SUMPRODUCT((TB!A:A="IS-1*")*(TB!N41))

  • @jayjayf9699
    @jayjayf9699 6 лет назад

    sorry i meant this does not work =SUMPRODUCT((TB!A:A="IS-1*")*(Months

    • @Computergaga
      @Computergaga  6 лет назад +1

      I don't believe you can use wildcards with the SUMPRODUCT function Jayjay.
      You could replace the (TB!A:A="IS-1*") part of the formula with (--ISNUMBER(FIND("IS-1",TB!A:A)) or with --(LEFT(TB!A:A,4)="IS-1")

    • @jayjayf9699
      @jayjayf9699 6 лет назад +1

      Computergaga OK thanks