How to Create button Go to specific sheet in Google Spreadsheet

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ก.ค. 2020
  • In this video, I will show you, How to Create a button Go to a specific sheet in Google Spreadsheet.
    ** Premium Service **
    bit.ly/2TiFH5l
    bit.ly/2NaJtY9
    bit.ly/2IezzWG
    Facebook Page:
    goo.gl/mVvmvA
    goo.gl/FmZ84U
    Please Subscribe My Channel:
    goo.gl/9kkcty
    Button Script: bit.ly/30kAJ8V
    #sheet_button #go_to_sheet_button #iLink_sheet_button

ความคิดเห็น • 64

  • @ABHISHEKGUPTA-yi3vu
    @ABHISHEKGUPTA-yi3vu 2 ปีที่แล้ว +2

    Just what i wanted !!!
    Thanks :)

    • @PDFEditing
      @PDFEditing  2 ปีที่แล้ว +1

      Glad to hear that!

  • @nywanderer100
    @nywanderer100 3 ปีที่แล้ว +3

    Thank you. "Just what the doctor ordered," as they say. Cheers.

  • @user-qu1zu7ji6s
    @user-qu1zu7ji6s 7 หลายเดือนก่อน

    i was looking for it!!!!!

  • @mikepuno2000
    @mikepuno2000 10 หลายเดือนก่อน

    I really want to thank you for sharing your wonderful ideas on this, it is very useful for my project, again a big thanks.

  • @TeacherGunar
    @TeacherGunar 5 หลายเดือนก่อน

    Thank you very much for the script. It helps me a lot.

    • @PDFEditing
      @PDFEditing  5 หลายเดือนก่อน

      Glad to hear that

  • @newera2853
    @newera2853 2 ปีที่แล้ว

    it was really helpful. thank you

  • @hassanmburia8825
    @hassanmburia8825 3 ปีที่แล้ว +1

    Thank you so much GOD bless

    • @PDFEditing
      @PDFEditing  3 ปีที่แล้ว

      You are so welcome

  • @averagedudeusa9722
    @averagedudeusa9722 4 หลายเดือนก่อน

    its crazy how the developers dont know how to make the process more simple. This is too much trouble to go through for a basic button. either way excellent explanation. thanks.

    • @astropgn
      @astropgn 3 หลายเดือนก่อน

      It might look like it is a lot of trouble, but this is actually quite powerful. Anyone can follow this 5 min video, and you can then use this knowledge to build more complex systems.

  • @user-gm3ux6kt8i
    @user-gm3ux6kt8i 5 หลายเดือนก่อน

    its very helpful, thanks

    • @PDFEditing
      @PDFEditing  5 หลายเดือนก่อน

      You're welcome!

  • @rufiorufio4693
    @rufiorufio4693 2 ปีที่แล้ว

    thank you for this.

    • @PDFEditing
      @PDFEditing  2 ปีที่แล้ว

      You're very welcome!

  • @ailenesanjuan5595
    @ailenesanjuan5595 2 ปีที่แล้ว +1

    Thanks for this! Is there a way that one button can open multiple sheets not just one?

    • @PDFEditing
      @PDFEditing  ปีที่แล้ว

      Not that I know of

  • @bambangpurnamasomalinggi319
    @bambangpurnamasomalinggi319 3 ปีที่แล้ว +1

    tks alot brother....i am from manokwari papua

  • @mohanadhazah6311
    @mohanadhazah6311 2 ปีที่แล้ว

    Great Job

  • @andrewbray1570
    @andrewbray1570 3 ปีที่แล้ว +2

    Very Helpful - but I couldnt' get a copy of coding you display. That would be very handy for all.

  • @TheBtrivedi
    @TheBtrivedi 2 ปีที่แล้ว

    Thank you.

    • @PDFEditing
      @PDFEditing  2 ปีที่แล้ว +1

      You're welcome!

  • @ammararafique6225
    @ammararafique6225 ปีที่แล้ว

    ThankYou Mate

  • @user-wo5rw5lo1s
    @user-wo5rw5lo1s ปีที่แล้ว

    Thank you

  • @canyasin16
    @canyasin16 ปีที่แล้ว

    Thanks

  • @biruareva
    @biruareva 3 ปีที่แล้ว +22

    function P1() {
    // 1 = row 1, 14 = column 14 = N
    goToSheet("DashBoard",47,1)
    }
    function goToSheet(sheetName, row, col) {
    var sheet= SpreadsheetApp.getActive().getSheetByName(sheetName);
    SpreadsheetApp.setActiveSheet(sheet);
    var range = sheet.getRange(row,col)
    SpreadsheetApp.setActiveRange(range);
    }

    • @rahmatollohoktyabirov7287
      @rahmatollohoktyabirov7287 2 ปีที่แล้ว

      Here you are assigning to the fixed page, but I want to give the reference to the specific cell. How can I do that? For instance, I have 100 pages, I will put list of pages to the cell A1, (it will be drop down list) after that if you click the button it will take you to the page that is shown on A1 cell ?

    • @ammararafique6225
      @ammararafique6225 ปีที่แล้ว

      Thanks Mate

  • @lorvha
    @lorvha 3 ปีที่แล้ว +2

    how can i a button for "Go to specific Ceell"? Example Cell: G1:L1
    Thank you very much for answer

    • @EdgeOfYesterday
      @EdgeOfYesterday 2 ปีที่แล้ว

      Hi Lorvha. This is a late reply hope it is still useful. This script will open a dialogue box and ask for the cell reference you enter it and then click OK
      function goToCell()
      {
      var strRange = Browser.inputBox("Insert the required cell (e.g.: B20):", Browser.Buttons.OK_CANCEL);
      SpreadsheetApp.getActiveSheet().getRange(strRange).activate();
      }

    • @jesusdelavega7101
      @jesusdelavega7101 2 ปีที่แล้ว

      @@EdgeOfYesterday it's not working

  • @walidtawk2828
    @walidtawk2828 2 ปีที่แล้ว

    hello thank you for this video, but it is giving me an error (scripts cannot convert 'comments' to int.)

  • @willsgrandad
    @willsgrandad 2 ปีที่แล้ว +3

    I wanted to get to any sheet. Used Insert...Link...Sheets and named ranges... selected sheet I wanted .. enter.
    You get a cell with the sheet you want to go to. Click on cell and choose cell name . done.
    No scripts
    No Drawing buttons
    However you do not get a button displayed, just a cell.
    Hope this helps someone

    • @paleteriaelpibe7035
      @paleteriaelpibe7035 5 หลายเดือนก่อน

      Greaet idea. Do you know how to make it clickable?

    • @rodrigonobrega7777
      @rodrigonobrega7777 2 หลายเดือนก่อน

      Excellent idea! Thanks for sharing!

    • @rodrigonobrega7777
      @rodrigonobrega7777 2 หลายเดือนก่อน

      @@paleteriaelpibe7035 Good question. It's clickable, but needs 2 clicks (one on the cell, another on the link that appears nearby). Maybe not so straightforward for users of our sheets, but helpful anyway.

  • @sovannaryhong1610
    @sovannaryhong1610 6 หลายเดือนก่อน +1

    My tool doesn't have script editor function, what can I fix that?

    • @astropgn
      @astropgn 3 หลายเดือนก่อน

      Google changed its location, it is on "Extensions -> Apps Script" now.

  • @Video_Populer
    @Video_Populer ปีที่แล้ว

    if it is made like that, can the hidden sheet be accessed?

  • @SewModernBags
    @SewModernBags 2 ปีที่แล้ว

    I am getting this message when I click the button A script attached to this document needs your permission to run. And its asking me to sign into the account I'm already signed into.

    • @astropgn
      @astropgn 3 หลายเดือนก่อน

      It is normal. You are not signing in into your account, you are authenticating that you trust the script you just created. After trusting it and giving it permission to run on this spreadsheet, it won't prompt this anymore.

  • @mikeshedrack1381
    @mikeshedrack1381 2 หลายเดือนก่อน

    Nice job...no need of repeating the functions(gotosheet function), one function will serve all the buttons😂😂
    Just call it and assign thr parameters

    • @PDFEditing
      @PDFEditing  2 หลายเดือนก่อน

      Thanks for the tips!

  • @micadistribuidora6951
    @micadistribuidora6951 ปีที่แล้ว

    como se puede hacer un boton para imprimir en google sheets

  • @TemplesOfIndia_explore
    @TemplesOfIndia_explore ปีที่แล้ว

    Hey please help me out my script is running but not able to go to particular sheet

  • @lukeanderson4593
    @lukeanderson4593 2 ปีที่แล้ว

    "Exception: Invalid argument: sheet"

  • @prodSpTcher
    @prodSpTcher 7 หลายเดือนก่อน

    GOOD job
    but dosent work on mobile (androïde & ios)

  • @anowarhossan4985
    @anowarhossan4985 3 ปีที่แล้ว

    Button Script link not working

  • @bilguunjargalsaikhan5030
    @bilguunjargalsaikhan5030 หลายเดือนก่อน

    Please share the code.

  • @ajaykasani1120
    @ajaykasani1120 ปีที่แล้ว

    CAN WE CREATE PRINT BUTTON ?

  • @shubhamsharma8373
    @shubhamsharma8373 3 ปีที่แล้ว

    I want to send mail according to the customer mail ID not specific mail ID so how we add mail ID cell in script

  • @shubhamsharma8373
    @shubhamsharma8373 3 ปีที่แล้ว

    I want to send mail according to customer mail ID

  • @rokkirocks4016
    @rokkirocks4016 2 ปีที่แล้ว

    Not working bro....

    • @PDFEditing
      @PDFEditing  2 ปีที่แล้ว

      what happened there?