Тёмный
Code With Mark
Code With Mark
Code With Mark
Подписаться
For more helpful tips visit - codewithmark.com
Комментарии
@SultanHarbi93-fc3gr
@SultanHarbi93-fc3gr 4 дня назад
Thank you but i don't know why don't work if the name's is dates for example i want for each sheet name will be as date 01/July/2024.
@sjo_learning
@sjo_learning 6 дней назад
Thank yow Mah friend Mark <3
@faisalhossain2002
@faisalhossain2002 15 дней назад
Just wasted my time here.
@nlegacysolo
@nlegacysolo 24 дня назад
Not hard to understand you. Obviously, your first lang is not English, but I can 100% understand this versus some other vids where they bait you with Eng titles and speak H instead. 🙄I think the people who do not understand probably are not at this level of PHP understanding. This was explained well, but perhaps not for a novice or the person who wants to criticize the way a person chooses to talk/present their tutorial. Keep making tuts and ignore the negative comments from people whose personal issues affect their ability to comprehend what you are saying🙃🙂
@danielhodges6958
@danielhodges6958 24 дня назад
Thank you for this video. It's from a year ago but I'm hoping someone might know how to adjust this code so that when you click the "submit" button it submits the data to the sheet and move the person on to another page.
@sani-zy3fp
@sani-zy3fp 27 дней назад
Thank you very much!
@prashantjadhav5617
@prashantjadhav5617 28 дней назад
useless tutorial
@michaelcombrink8165
@michaelcombrink8165 Месяц назад
awesome i had to do so much mental gymnastics to do this stuff using old excell style comands, the query function does dozens of steps seamlessly that's epic i strated learning mysql but i already know a lot with sheets and it has so many great features, free hosting, colaborating, sharing, publishing, extension library, open source forums and solutions, etc, and integrations with multiple platforms and devices and google services (maps, calendar, text, gmail, contacts, notes, docs, drive, photos, youtube, forms, sites, etc, etc, etc) i'm hoping to one day make automations for my business chat bots reminders, confirm apointment, schedule, faq forms, client intake, employee application, job request, emails, reciepts, invoices, website, client portal, log in, check your bill, documents, scheduled jobs, reports, portfolio, designs, status or projects, etc employee scheduling, routes, project management,
@avenger9mm
@avenger9mm Месяц назад
its working but removing the other existing other sheets how to avoid it removing the existing sheets
@kdhanjani
@kdhanjani 2 месяца назад
Thank you, this saved me a lot of hours :)
@ammarfahha2910
@ammarfahha2910 2 месяца назад
في حد عربي يشرحلي الفيد؟
@AndreaGalusha
@AndreaGalusha 2 месяца назад
I don't see a links to the code for the scripts. Can you please post it?
@Swetasinghvlog448
@Swetasinghvlog448 2 месяца назад
Why your video voice is so low, not able to hear anything
@kaii2491
@kaii2491 2 месяца назад
thiis man took 4 minutes to explain how to click a button
@blazncrooks2474
@blazncrooks2474 Месяц назад
fr
@nikolajspetrikins8947
@nikolajspetrikins8947 2 месяца назад
Thanks for the great solution! It was very useful!
@OluwadiyaKehinde
@OluwadiyaKehinde 2 месяца назад
Misleading video
@sani-zy3fp
@sani-zy3fp 2 месяца назад
Thanks For your video! I subbed
@DheaFadlia
@DheaFadlia 3 месяца назад
Wonder how to do this with reactjs
@iconoyuri9555
@iconoyuri9555 3 месяца назад
Thanks a lot
@alexsandroribeiro6759
@alexsandroribeiro6759 3 месяца назад
and if you have multiple pages?
@honeylenetagulao
@honeylenetagulao 4 месяца назад
subscribed! thank youuuu
@IleniaQuintero
@IleniaQuintero 4 месяца назад
Hello, I was looking at your video channel. We may be helping a company that uses secure images to increase supply chain security and help cloud native development. Would you be willing to help try their software, make a video, and help show devs how to use their tools? This is not an offer, but just to start a conversation about your willingness to take on sponsorship. Please provide me with your email if you are interested. You'd have a chance to look at their technology and decide if it's the type of software that you'd be interested in covering in your channel.
@mr.dog2669
@mr.dog2669 Месяц назад
Are you dumb, if you want to give an offer contact him directly don't put it in here. And you are saying "We may be helping" like what?, you are doing it or not say it correctly, bruh. Judging by your talk, your account created date some one like me suspect you as a shady one you know just saying.
@layymer
@layymer 4 месяца назад
how to make in SheetNames links to every created sheet?
@josecarlosvalenzuelasalaza6661
@josecarlosvalenzuelasalaza6661 4 месяца назад
Me funciona el código. Muchas gracias Mark. Lo que ncesito hacer es que cada vez que mi página sea recargada, no se oculte la información, sólo se refresque. Gracias por el apoyo.
@Codewithmark
@Codewithmark 4 месяца назад
Hi @josecarlosvalenzuelasalaza6661, You can hide it via CSS. For example, let's say you have div container: <div class="my_stuff" > <h1> code with mark </h1> </div> <button id="btn_click" >Click me</button> You can hide it like: <div class="my_stuff" sytle="display:none;" > <h1> code with mark </h1> </div> Then use have jquery to show like this: $(document).ready(function(){ $("#btn_click").click(function(){ $(".my_stuff").hide(); }); }); You can learn more about jquery here: www.w3schools.com/jquery/jquery_hide_show.asp Happy Coding 🙂
@siddhardhak4367
@siddhardhak4367 4 месяца назад
Hey how to make it work for long tables
@Codewithmark
@Codewithmark 4 месяца назад
how long do you have in mind?
@mervyntracy
@mervyntracy 5 месяцев назад
Code if you want to delete certain worksheets. Function delete_sheets() Dim i As Long, LastRow As Long Dim wsDeleteNames As Worksheet Dim sheetName As String ' Set a reference to the "DeleteNames" worksheet Set wsDeleteNames = ThisWorkbook.Worksheets("DeleteNames") ' Find the last row in column A of the "DeleteNames" worksheet LastRow = wsDeleteNames.Cells(wsDeleteNames.Rows.count, "A").End(xlUp).Row ' Loop through each row in column A of the "DeleteNames" worksheet For i = LastRow To 1 Step -1 ' Retrieve the sheet name from column A sheetName = wsDeleteNames.Cells(i, 1).Value ' Check if the sheet exists in the workbook If WorksheetExists(sheetName) Then ' Delete the sheet Application.DisplayAlerts = False ' Suppress delete confirmation ThisWorkbook.Sheets(sheetName).Delete Application.DisplayAlerts = True End If Next i MsgBox "Done deleting sheets" End Function Function WorksheetExists(sheetName As String) As Boolean ' Function to check if a worksheet exists in the workbook On Error Resume Next WorksheetExists = Not ThisWorkbook.Worksheets(sheetName) Is Nothing On Error GoTo 0 End Function
@Codewithmark
@Codewithmark 5 месяцев назад
Thank you for sharing your code! The community appreciate it!
@mervyntracy
@mervyntracy 5 месяцев назад
Code to automatically determine how many rows in the Names worksheet: Function create_sheets() Dim i As Long, LastRow As Long Dim wsNames As Worksheet, wsTemplate As Worksheet ' Set references to worksheets Set wsNames = ThisWorkbook.Worksheets("Names") Set wsTemplate = ThisWorkbook.Worksheets("Template") ' Find the last row in column A of the "Names" worksheet LastRow = wsNames.Cells(wsNames.Rows.count, "A").End(xlUp).Row ' Loop through each row in column A of the "Names" worksheet For i = 1 To LastRow ' Copy sheet from template wsTemplate.Copy After:=Sheets(i) ' Rename the copied sheet with the value from column A Sheets(i + 1).Name = wsNames.Cells(i, 1).Value ' Update the value in cell B2 of the copied sheet with the new sheet name Sheets(i + 1).Range("B2").Value = Sheets(i + 1).Name Next i MsgBox "Done creating sheets" End Function
@kelimutscheller1960
@kelimutscheller1960 5 месяцев назад
No Developer option in Excel for me :(
@ShadE97
@ShadE97 2 месяца назад
Add the ribbon from options
@PrudhviReddy-xe9ol
@PrudhviReddy-xe9ol 6 месяцев назад
TypeError: Cannot read properties of null (reading 'copyTo')
@user-im2sy2sh2i
@user-im2sy2sh2i 10 дней назад
I got the same error. How did you fix it?
@computeradvantageslimited6518
@computeradvantageslimited6518 6 месяцев назад
Very useful video. Iam new to coding. my code works with static table, but fails when the table is from mysql database in Python Flask. Any idea what is missing. Thanks for your time.
@tlee7028
@tlee7028 6 месяцев назад
thank you Mark... so cool and easy to follow... ! it worked very nicely for me.
@antareepdas3325
@antareepdas3325 6 месяцев назад
will this work without internet connetion?
@Codewithmark
@Codewithmark 7 месяцев назад
Advance Macro Video:: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-BuK2bdqPTag.html
@anmolraj408
@anmolraj408 7 месяцев назад
Sir, how to make this website work on mobile phone? Please help 🙏🏻
@Younessss_
@Younessss_ 7 месяцев назад
I wish you would just focus on the process from A to Z instead of going sideways and mentioning other things every 30 seconds, great video tho thanks!
@cosmosprincess20
@cosmosprincess20 7 месяцев назад
Im rocking with Mark!
@ABHIJEETSRIVASTAVA-go5tm
@ABHIJEETSRIVASTAVA-go5tm 8 месяцев назад
Copy link please for code
@user-ms4qu6mr4g
@user-ms4qu6mr4g 8 месяцев назад
I'm not sure what I'm doing wrong, but I keep getting a "Run-time error '9': subscript out of range. I am trying to use this same method, but instead of names, with dates. I have created a new sheet with my dates in a row (named Date). I want the date to change each time adding 1 day to be placed in F1 in my original template (named Template). The code highlights "ActiveSheet.Name = Sheets ("Name"). Cells (i, 1) and gives me a 'debug' option as well as 'end' This is how I entered the code: Function create_sheets() Dim i As Long, LastRow As Long, ws As Worksheet Sheets("Date").Activate LastRow = 31 For i = 1 To LastRow 'copy sheet from template Sheets("Template").Copy After:=Sheets(i) ActiveSheet.Name = Sheets("Names").Cells(i, 1) 'update dc number ActiveSheet.Range("f1").Value = ActiveSheet.Name Next i MsgBox "Done creating sheets" End Function
@cosmoscarey
@cosmoscarey 7 месяцев назад
Same here!
@JamesT-dm9gc
@JamesT-dm9gc 7 месяцев назад
Same here!
@mervyntracy
@mervyntracy 5 месяцев назад
ActiveSheet.Name = Sheets("").Cells(i, 1) ActiveSheet.Name = Sheets("").Cells(i, 1) since that is the name of your sheet.
@patrickguillen1194
@patrickguillen1194 8 месяцев назад
THANK YOU SO MUCCHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@debi2u
@debi2u 8 месяцев назад
I love this idea - but when I run the Clone Menu, it is blocked. And when I go to App & Services, there aren't any "apps/services" to review. Thoughts?
@user-hr5jz1ro1b
@user-hr5jz1ro1b 8 месяцев назад
Is there a way to revise the script so that we can use the attachment feature and post the files to an API?
@sonupathak4906
@sonupathak4906 10 месяцев назад
change page without reload page in anchor tag is possibal??
@JocelynDagenais
@JocelynDagenais 10 месяцев назад
Thank you Mark ! One quick question: is it possible instead of coppying the whole "template" sheet to copy a specific line that is gonna be different for each new tabs. Like the first new tab will have only line 3 of the template, second new tab wil have line 4, and so on. Thanks
@RakeshRanag
@RakeshRanag 10 месяцев назад
how to disable copy paste in froala editor
@ruthmonsanto3283
@ruthmonsanto3283 10 месяцев назад
You're a genius! Thank you so much for this video. It was super easy to follow, clear, fast, and just right on!
@tahirbahoo9482
@tahirbahoo9482 10 месяцев назад
how can we add images in the excel from this library, can you please tell, I am doing some work and I didn't find the way to add the images in the excel, Please Help
@sudipbosu8787
@sudipbosu8787 10 месяцев назад
Thanks!
@user-jz9qu3wu4f
@user-jz9qu3wu4f 11 месяцев назад
Great job
@syazwani3285
@syazwani3285 11 месяцев назад
Hello! Can you share your email? I want to ask some question that cannot be explained well here! Please! it is my project and it is a dead end for 3weeks :( already
@Codewithmark
@Codewithmark 11 месяцев назад
You can contact me here: codewithmark.com/contact
@syazwani3285
@syazwani3285 11 месяцев назад
@@Codewithmark I have already submit the questions. I hope you can share it with me later :( since I am facing a dead end
@user-kf1hv8tx3k
@user-kf1hv8tx3k 11 месяцев назад
Hello. This is really amazing. How can I run a similar script in order to create a new google sheet for each row. This is NOT a new tab but a whole new sheet?
@Codewithmark
@Codewithmark 11 месяцев назад
This should help you out ( ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-gk63zWqm6mw.html ) Thanks to @LaurenceSvekisCourses