How to Create Floating Cells in Excel

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

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

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

    This is GOLD. Thank you so much.

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

      Hello @jschwone2607,
      You are most welcome. Thanks for your appreciation. Keep learning Excel with ExcelDemy!
      Regards
      ExcelDemy

  • @dont_try_to_understand_me_14
    @dont_try_to_understand_me_14 7 месяцев назад +2

    Best channel to learn excel

    • @exceldemy2006
      @exceldemy2006  7 месяцев назад

      Dear, Thanks for your compliments! Glad to hear that.

  • @tarvsingh6241
    @tarvsingh6241 7 месяцев назад +2

    BRILLIANT, FAR REACHING HARD HITTING SPEECH TO THE MARK.

    • @exceldemy2006
      @exceldemy2006  7 месяцев назад

      Dear, Thanks for your wonderful compliment! Your appreciation means a lot to us.

  • @raufali9265
    @raufali9265 7 месяцев назад +2

    excellent............................😍😍😍😍😍😍😍😍😍😍🥰🥰🥰🥰🥰

    • @exceldemy2006
      @exceldemy2006  7 месяцев назад

      Hello @raufali9265,
      Thanks a lot. Your appreciation means a lot to us. Please stay connected with us.
      Regards
      ExcelDemy

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

    Very informative

    • @exceldemy2006
      @exceldemy2006  7 месяцев назад

      Hello @cholliday,
      You are most welcome. Please stay connected with us.
      Regards
      ExcelDemy

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

    You can use paste linked picture or the camera feature to achieve the floating view

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

      Hello @KeithSwanzy,
      Thanks for your amazing suggestions. Please stay connected with us.
      Regards
      ExcelDemy

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

    Thank you very much

    • @exceldemy2006
      @exceldemy2006  7 месяцев назад

      Hello @rshabsough ,
      You are most welcome. Your appreciation means a lot to us. Please stay connected with us.
      Regards
      ExcelDemy

  • @DeepakSugandhi-q8d
    @DeepakSugandhi-q8d 6 месяцев назад +1

    Your first line in VBA code is
    "Private Sub Worksheet_SelectionChange(ByVal A_Target As Excel.Range)" whereas normal line is
    "Private Sub Worksheet_SelectionChange(ByVal Target As Range)".
    What is the difference?

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

      Hello @user-ym3df5xx9w,
      There are differences between the two lines is the parameter type.
      Here, "ByVal A_Target As Excel.Range" specifies that the parameter is of type Excel.Range and is prefixed by the worksheet's class. To use explicit references to objects from the Excel library.
      Where "ByVal Target As Range" uses the generic Range type, which is implicitly understood to be from the Excel library within the context of VBA.
      If you are concerned with naming "A_Target" and "Target", it is simply the name of the parameter. In VBA, you can name parameters anything you like, as long as it follows naming conventions.
      Regards
      ExcelDemy

  • @TrevMA
    @TrevMA 7 месяцев назад +3

    Interesting, but ultimately meh. Far more useful would be to have a floating cell synchronized with an input cell such that you can edit either and have the change reflected in both, without using VBA. (I know it's pretty simple to do with an ActiveX textbox, but as with VBA, I don't really like using ActiveX in any workbook I have to share.)

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

      Dear, Thanks for your feedback! Unfortunately, the only way to achieve the requirements you mentioned is to use VBA.