Excel Tic Tac Toe Game

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

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

  • @TrumPet500
    @TrumPet500 7 месяцев назад +1

    you are amazing!

  • @nadeche05
    @nadeche05 Месяц назад

    Can you please do a full video tutorial on how to do all the following steps from the blog? :)

    • @ExcelMacroMania
      @ExcelMacroMania  19 дней назад +1

      I will do, it's on my list already, probably will publish here in 2-3 months time.

    • @nadeche05
      @nadeche05 19 дней назад

      @ExcelMacroMania awesome! :) Thank you

  • @abbassx9
    @abbassx9 Месяц назад

    For developer tab
    Go to file (in excel )
    Click on options tab
    Then go to customize ribbon
    Then click on popular commands
    Then click on main tabs
    Then select developer tab
    Then click (okkkk)

  • @ricardoricric
    @ricardoricric 2 года назад +1

    Can you create a just "do" loop, without the "while" or "until"?? I cant do it in my VBA as you did on your game [at 7:00 on your vid]. Can you help me? Thanks and also thanks for the nice videos and tutorials.

    • @ExcelMacroMania
      @ExcelMacroMania  2 года назад

      Yes, you can create a Do loop without While or Until (as shown in the video). However, you need to be careful and add some condition to exit the loop because otherwise it will be an infinite loop and most probably freeze the application. You can exit the loop with "Exit Do" when the condition is met.

    • @ricardoricric
      @ricardoricric 2 года назад

      @@ExcelMacroMania Thanks! It worked! Previously to my question I tried a Do without while or until but Excel didnt allow me. Maybe I did something wrong that time, but now I tried again with a different code (similar to the one on your video) and worked. Thanks!

  • @joses.pacheco3069
    @joses.pacheco3069 3 года назад +2

    Excelente jogo. Parabéns!

  • @abbassx9
    @abbassx9 Месяц назад

    How can we save though??? I just lost my program 😭

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

    How can you lock the whole page without locking the start buttons??? Please help

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

      Right-click the buttons or shapes, go to properties if it's a shape or format control if it's a command button and untick the property "Locked". Then you can protect the worksheet while buttons are unlocked. The same applies to any other components in Excel.

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

    is it possible to beat it?

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

      In general, winning tic tac toe is impossible if both players make perfect moves. The algorithm I used is explained in more detail in my blog and is just doing that, perfect moves, so that you cannot really win. You are smart enough is you just don't lose 🙂
      And of course, you can modify the code to create easier levels, the easiest probably leaving the computer make completely random moves as I show first in the video. Here's the post with more details:
      excelmacrofun.blogspot.com/2021/11/excel-tic-tac-toe.html

  • @verizonextron
    @verizonextron 11 месяцев назад +2

    theres no "developer" in my excel lol

    • @ExcelMacroMania
      @ExcelMacroMania  11 месяцев назад

      You need to add the developer tab to the ribbon, it's explained in this introduction video, somewhere towards the middle or end of the video: ruclips.net/video/CeBbTDezuEM/видео.htmlsi=yy5Hd026dRV_si13

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

      @@ExcelMacroMania I have not the ribbon why

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

      @@Alinka05663 Click on "Ribbon Display Options" on the top-right corner of Excel to show, hide, etc, or press Ctrl + F1. You can also do it with VBA - CommandBars.ExecuteMso "HideRibbon"

    • @ExcelMacroMania
      @ExcelMacroMania  22 дня назад

      @@Alinka05663 Maybe the macro has a line to hide the ribbon. You can show it again manually from the upper right corner of Excel or using this line of VBA code (and/or remove this line in the macro, this is the one that hides the ribbon):
      CommandBars.ExecuteMso "HideRibbon"
      Or if it's minimized only:
      CommandBars.ExecuteMso "MinimizeRibbon"

  • @alvarezmialmaalan8520
    @alvarezmialmaalan8520 2 года назад

    Pero no lo terminas?

    • @ExcelMacroMania
      @ExcelMacroMania  2 года назад

      Se estaba haciendo el video un poco largo ya, y es algo complicado de explicar. Pero si hay interes puedo hacer otro video explicando el algoritmo. Tambien puedes ver la explicacion y bajar el archivo en mi blog: excelmacrofun.blogspot.com/2021/11/excel-tic-tac-toe.html

  • @RILEX_YT1
    @RILEX_YT1 6 месяцев назад

    7:24