Timestamp - Excel & Google Sheets

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 มิ.ย. 2024
  • Learn how to automatically create a timestamp when data is entered in Google Sheets & Excel using iterative calculations and built in functions.
    #Timestamp #Excel #Google Sheets

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

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

    Thank you for the excellent video ! A 100% non coder like me was able to figure out how to implement an autostamp easily. Big ups to you .

  • @mdamirhossain9376
    @mdamirhossain9376 4 ปีที่แล้ว +1

    Just awesome. I'm new in G.Sheet, but working in Excel for long. I never know a circular reference can work. Love it.

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

    I really like this guy. He picks the right things and explains really well. Thanks

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

    just what I was looking for today! I use it to record daily portfolio totals. Work wonderfully!!!

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

    Thank you SOOOO very much. I have watched several videos and had explanations of the formula, but none noted a very key piece that helped me solve the issue I was having. I needed to find a way to time stamp a cell when "in progress" was entered, and then timestamp another cell when that cell was changed to complete. And It was your explanation of how the IFS formula broke down that finally clicked in to place that pivotal info. in the second time stamp I just needed to enter an additional logical test to test if it was "in progress" and leave blank, so that when the IFS reached the end of the tests it would time stamp accurately. Thank you again so very much!!!

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

    Always very helpful. Simply but amazing technique. Thank you!!

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

    You saved me! More tips and tricks please!

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

    Awesome! Very detailed explanation.

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

    many thanks and God bless, this has taken me a step foward

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

    Thank You, Thank You, Thank You so much!

  • @isikeratli
    @isikeratli 4 ปีที่แล้ว

    I wish you could post videos every day :D thank you for spreading your knowledge!!

  • @MrSleep-jv3gh
    @MrSleep-jv3gh 3 ปีที่แล้ว +2

    Timestamp Still change if i fill another cells then i did this =IFS(A1="";"";A2="";NOW();A2;A2)
    Its works 😅 Thank you

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

    Wow this is really great.
    By watching your tutorials, I have made an inventory system shared to our stores (we have 8), all I have to do is protect ranges from the devices/accounts they are using. (We started our business records managements system from the classical paper and forms method)
    What if I want to have the last modification to be displayed on the timestamp?

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

    Thank You, Thank You, easier than the scripts

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

    This guy was awesome! I also figured out how to use the checkboxes using this formula here: =ifS(A2=FALSE,"",B2="",NOW(),TRUE,B2) - that took too long but it works. Thank you!

  • @fredrikpahlsson
    @fredrikpahlsson 4 ปีที่แล้ว +1

    As always - Splendid!
    Just one small question; If one use a checkbox (=TRUE or FALSE) in A2 - How do one solve the "else" case (that now is TRUE, which don't work when using the checkbox with the values TRUE or FALSE)?
    Any suggestions would be much appreciated.

  • @adityasvasisht4743
    @adityasvasisht4743 4 ปีที่แล้ว +5

    You are a LEGEND! I love your work!
    So I tried doing this same tutorial in another way using App Scripts without the need of circular references.
    I made this simple function
    function timestamp() {
    const date_time = new Date();
    return date_time
    };
    now on the google sheet, I made two columns with headers "TimeStamp" & "Name"
    "A2" cell would have the formula "=if(B2="","",timestamp())"
    Now if you type anything in B2, a timestamp gets added. Another cool thing is if you re-edit B2, the previous timestamp is still stored and does not get re-written.

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Cool.

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

      Ahh thanks.. gotta learn JS so goood!

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

      Used Aditya's script it and worked great, but the next day the timestamp updated when I opened the sheet from another account. Maybe it has something to do with the way Google Sheets populate itself when not in the chache, or something of the sort.

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

      @@flotanteu do you solved this problem sir?

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

      ​@@jeromenaron2962 Yeah, don't call the app from a formula, use an onEdit app that checks for the desired conditions and sets the stamp as a value.
      For full tiemstamp:
      var today = new Date();
      /*desired range here*/.setValue(today);
      it did the trick, I don't know why it must store the stamp in a var first, "it just works".
      For stamping just the date, you need to set the time at zeroes.
      /*desired range here*/.setValue(new Date(today.setHours(0, 0, 0, 0)));
      For stamping the current time only, this is not optimized but saved me all the java timezones drama:
      e.range.setFormula('=NOW()-TODAY()');
      var ahorita = e.range.getValue();
      e.range.setValue(ahorita);
      e.range.setNumberFormat('H:mm');

  • @bocobox
    @bocobox 4 ปีที่แล้ว +1

    I am always looking forward to your next video. you really make my eyes open.

  • @richardmhain
    @richardmhain 4 ปีที่แล้ว +2

    These should be useful now that we're aware of timestamp and iteration.
    Wondering how auto recalc option affects iteration. Will give it a try sometime.
    Thanks!

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

    Excellent! Thank you!

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

    I love this video. And thanking you very much.

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

    This helped so much, thank you!

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

    I've never used IFS... I'm always surprised what I learn on here. Thanks for the videos!

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

    Big Big Big Thanks!!!

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

    You are GOOD! Extremely useful.

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

    You are the best!!!

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

    So how would we set it up to update the time, when we make a change to google doc sheet? I mean the whole sheet, any change, displayed in one cell expressing the changed date, I know under Spreadsheet settings > Calculations > Recalculation "On change", but that is not the case it will update the time regardless any time you open the document or it's idle after a while the time still changes. I tried selecting the whole sheet and excluding the one cell that would show the modified time, but it's not working it keeps giving me #VALUE, any thoughts or can you help?

  • @MrLilger
    @MrLilger 4 ปีที่แล้ว

    do you know if any data import query can modified the data iteration?

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

    HI... really helpful with ur videoo.. but want to ask if I want to combine it with array function how to write that formula ?? wait for ur reply ^^

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

    Very nice tips there. How about getting the current time stamp whenever there's edition?

  • @abhishekdhyani6520
    @abhishekdhyani6520 4 ปีที่แล้ว

    Tqq so much for this video sir....I lv it....your Chanel help me a lot sir...👌👌

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

    Damm! You are good!!!

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

    Hi
    Thank you for your insightful video!
    May i know the timestamp, if i want it to be updated each time i changes another cell, is it possible in Google sheet with just formula? May I know how to achieve this if its possible? I managed to did on Excel file but Google sheet doesn't allow the formula to work 😭

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

    Gotta say, my friend, you're really GOOD. Also, concepts well explained. Congrats
    I need to learn Apps Scripts next. What is your advice: what's the best way to learn Apps Scripts.

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

      Start here th-cam.com/video/aPJ-2U45BpA/w-d-xo.html

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

    Awesome videos!

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

    I need some help and hopefully some can tell me how to do this pretty quick. I am trying to trigger a timestamp (that doesn't change) off of another calculated column on an importrange shared sheet. I have tried the IFS and IF with AND and can get a timestamp with different variations of the formulas but the timestamp updates within a few minutes and doesn't stay as the original and I am thinking it is because of the fact the data is being imported rather than static direct data in the sheet. This needs to be very consistent as our payroll is going to be based on this timestamp. Also this data needs to be friendly inside of Data Studio as that is how we deliver these reports on an intranet site.
    **One of the variations of the formulas seems to give a weird 12/30/1899 **00:00:00** when all conditions are not met.**
    ***I have also tried the AppScript option and I feel like I'm in over my head there other than being able to change out the Sheet names and adjusting the column placement and I'm not opposed to going that route but I have limited understanding of AppScript/JavaScript.
    Great videos btw - you have got me out of some jams in the past several years. Super clear and very in-depth content for the common person such as myself lol.

  • @PepitoGrilloCanarias
    @PepitoGrilloCanarias 4 ปีที่แล้ว

    Great as always

  • @senthil4707
    @senthil4707 4 ปีที่แล้ว

    Hi,
    This is exactly what I was searching for, thanks a lot for sharing this.
    I have also subscribed ur channel.👍

  • @les-fauxmonnayeurs9887
    @les-fauxmonnayeurs9887 2 ปีที่แล้ว

    I added the function to calculate the Timestamp but in my Google Sheet but it disappear after a second. Have encountered this issue before? (I have the iterative calcualtions turned on and have to 1)
    update// for some reasons, nesting the =IF (IF ()) worked, but IFS still disappearing (I'm using Google Sheet)

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

    Awesome

  • @elttio
    @elttio 4 ปีที่แล้ว

    Thank you very much for that 🙏

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

    Great video.. thank you for sharing this video.. i have a question, what if i want to add a worksheet and i also put timestamp.

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

    Hi it waa wonderful and a big help.. But i need where we dont need to necessarily erase the cell data and then add again... If just over writing can work that will be awesome

  • @pichit.raetai
    @pichit.raetai 4 ปีที่แล้ว

    Thank you. I m big fan

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

    This is amazing, new subscriber here. Is it possible to add the end time if the person entered another data in the next row?

  • @est_ideya
    @est_ideya 4 ปีที่แล้ว

    Very useful videos on your channel! It is a pity that there are no such videos in Russian. Tell me, please, how can I solve the problem of automatically copying data from a table in XLSX format to Google Sheets? Both tables are on Google disk. The data from the mobile application is periodically loaded into the XLSX table, it is necessary that this data is immediately loaded into Google Sheets. Thank!

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      This will require lots of API work. I guess as a workaround you could create a script with nodejs and setup a cron job on your computer to run it every X hours or minutes, assuming you are syncing that file to your hard drive. th-cam.com/video/LwAenUKWw8g/w-d-xo.html

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

    Thanks, what if I want the timestamp to show the last modified date and time, without having to delete the data first? Just override the data, then the timestamp is updated.

  • @walterpaiva719
    @walterpaiva719 4 ปีที่แล้ว

    As always, another awesome video!!! But where on earth do you learn it on the first place?

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

    Thanks..

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

    Few questions about the timestamp formula:
    1) I want it to continuously update if the cell has changed not just when it goes from blank to having text. I want timestamp to change each time text changes
    2) I want my formula to look at the entire row for changes not just a single cell is that something i can do with this formula?

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

    Great explanation! Found this because I was looking to populate Time Stamp and the person on our team who created the record in a Shared Google Sheet. Any advice on how to capture who created the Record?

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

      You'll have to use installable trigger with a script and every person using it will need to authorize the script, otherwise google will not allow to get user's information. I'm not sure if you already know this, but Google Sheets has version history which logs all changes and users who made those changes.

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

      @@ExcelGoogleSheets Thanks. I am aware of version history. It helps, but for each line created, I would like to know who created the record. I do not know scripts. Can you point me in the right direction?

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

    W O N D E R F U L !!! Can we actually store data with iterative calc?

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

    Hello there thank you very much.
    I need your help. I have an automatic flow that feeds the google sheet.
    I basically want to have the time stamp every time the file gets updated however every time it does, the time stamp deletes automatically the formula and if I try to put it again, it shows me something like 31/12/1889,
    Can anyone help me please?
    Thank you

  • @mdsyahril757
    @mdsyahril757 4 ปีที่แล้ว

    I need help! I am using a google form to conduct my check-in and check out for my guest. However, I want to make it neat as to link to the same person to check-in and check-out on the same row. By default, google excel will continue the list down for the 2 activities. The end state is to see my guest with their check-in timing and check-out timing in my record. Please advise.

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Google Forms is what it is. If you need custom stuff you need to use a Web App connected to Google Sheets.

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

    I want to create some sort of formula where by adding a certain amount of hours or days from today's date, the timer would count-down that tracks every minute real-time (if possible every second) that would then perform an action.
    Ex. Adding 2 days (48 hours) from Today, in which it'll begin a count-down timer from exactly 2 days, and when the timer hits 0, it would turn the cell red.
    How can you constantly update the spreadsheet so that the action can be taken once the timer hits 0?

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

    I also got reference error in Google sheets, like array formula expanding and overwrite in cell a6 so how solve this issue because I have to show daily Live stocks LTP change Hoti hai to mera stock portfolio sheets balance hota rahe, please guide ASAP

  • @KuldeepSingh-pl7rv
    @KuldeepSingh-pl7rv 2 ปีที่แล้ว

    I am using If condition formula with now for date ref cause i have prepared an FMS sheet but the problem is i dont know why when I try to update or open sheet next day it all date returns to 30-sep-1989 by default. any solution

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

    Hi hero,
    I want to guide me if buliding web app by apps script and I want set time slots and schedule and if it booked ignore that to appear for another option.
    For example I have to set start time 10:00 AM end time 3:00 pm
    Except to receive an array with 15 minutes interval in dropdown 10:00, 10:15, 10:30 an so on
    If I selected let's say 11:00 am and set duration 2 hours
    Need to block from 11:00 unti 1:00 pm to show up for coming drop down.
    Wish to support me 🙏

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

    I'm looking for a way to have the formula applied to a whole column so that if a row is added anywhere I can put a timestamp without having to copy/paste the formula. So far when using an Array, and I update a cell in Column A, ALL of the timestamps in Column B get updated to be the exact same.=Arrayformula(IFS(A2:A ="";"";B2:B="";now();FALSE;B2:B)) The " ; " is where a comma goes because I'm using Sheets in French.

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

    Sir, is there a way to do this using LAMBDA()?

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

    if I set a formula to set today date if another is not black how can I make Today() formula to be unchangeable when I open the sheet on the next date

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

    Sir, I did this for 2 columns [=ifs(and(B2="",C2=""),"",A2="",now(),true,A2)], A-column is the automatic time column, B & C are input. What happens, sometimes when I open the sheet again, some latest cells of the time column gets updated on the time I open. It doesn't happen every time, with every cell, but most of the times it happens when I reopen the sheet (basically, when I open it, during load, the latest 2-3 cells stays blank, so get updated after loading. Please help, solving this...
    Also happens in case of single column, I mean same with what's shown in this video.

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

      Use this method instead th-cam.com/video/548dD3iXetg/w-d-xo.html

  • @Mary-fd8qn
    @Mary-fd8qn 3 ปีที่แล้ว

    Thank you so much for this video. This is amazing! However, I am encountering issues doing this process. When creating and modifying the sheet, it works on the timestamping. However, when I closed the google sheet and reopen the file again or just refresh the file, the date becomes 30 December 1899 12:00 AM. I did exactly what was said in the video, I don't know what's wrong. Can anyone help me fix this?

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

      Use this method instead th-cam.com/video/548dD3iXetg/w-d-xo.html

    • @Mary-fd8qn
      @Mary-fd8qn 3 ปีที่แล้ว

      @@ExcelGoogleSheets Thank you! Thank you so much! :)

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

    Hi all,
    Can someone help me with this problem. I have timestamp script running in google sheet and it work fine when I manually change value in cell. But I can't find any solution how to have timestamp working when entry in trigger cell is some auto data from formula or such. Or maybe if someone have another solution. What I'm doing now is, from sheet1 with Query transfer data to sheet2 when some change is made. When new row is created in sheet2 I want to have date of entry for every row that is created in sheet2, and date need to be fix all the time.

  • @aaquibhasan8010
    @aaquibhasan8010 4 ปีที่แล้ว

    Thank you

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Thanks!

    • @aaquibhasan8010
      @aaquibhasan8010 4 ปีที่แล้ว

      @@ExcelGoogleSheets I have been using this for time stamp =IF(N1,N1,IF(L1"",$A$1,"")) where a1 cell contains now () formula , but after data all collected sometimes date changes automatically in some of the cells , Tried everything but could not find out the reason

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

    Please tell me how to use 2 Cell in 1 timestamp? Please send your formula

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

    Hi there,
    Is there any way that you can help out with this time stamp. The problem is:
    - When clicking the check box with IN it stamps the time in "IN" and then in the end of the day when the individual goes again and uses the "Out".
    It doesn't happen straight away, meaning that when they stamp in at 09:00 AM and then stamp out at 04:00 PM the 04:00 PM goes into both boxes.
    Hope you can see what I can't see.
    drive.google.com/file/d/1eiy9AJz_zkgegKJn-VGOQ4hNbly3DQSJ/view?usp=sharing

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

    can this be used for sharing the file? do the user would need to set iterations

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

    @7:50

  • @manishsinghal1874
    @manishsinghal1874 4 ปีที่แล้ว +1

    How can i use array formula in Google sheet

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Watch this video th-cam.com/video/m6-6Le7gEpY/w-d-xo.html

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

    mine is now showoing 12/30/1899 0:00:00. what did i do wrong

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

    how about for rows?

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

    Iterative calculation must be on for timestamp activation which should not be changed if re update in sheet.

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

    Does anybody know how to add a timestamp when a row is inserted (Auto timestamp on the inserted row)?? I'm going crazy, please help!

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

      Did you find it bro?

  • @elielaraujo
    @elielaraujo 4 ปีที่แล้ว

    When it is blank, ok it works. But note that when you UPDATE a cell that is already filled it doesnt work. In the video when the cell b2 is filled and then updated, the time stamp remains the same

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Yes, that's how it's supposed to work. To get time last modified check out this video th-cam.com/video/548dD3iXetg/w-d-xo.html

    • @JeanMalissard
      @JeanMalissard 4 ปีที่แล้ว

      @@ExcelGoogleSheets Any idea how to get the time stamp of the last update with formula ? (no script)

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

    Actually, I have a problem with this as It changes time every single minute. If the sheet is open or close, It constantly changes time.

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

    Sir jab Sheet Waps se Open krte tho date change ho jati hai

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

    Why doesn't Sheets have a Function for Time that does this?

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

      There should be a time stamp formula

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

    Why is it that every time i open the document it recalculatea and changes the timestamp with the new now date?

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

      If it doesn't work for you, try this instead th-cam.com/video/548dD3iXetg/w-d-xo.html

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

    WHAT IF I WANT THE TIME STAMP ON GOOGLE SHEET TO CHANGE AS I CHANGE THE COLOR OF THE CELL

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

    Please let me know if there any formula!

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

    Hi sir , can i get editer ma id alos?

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

    I did exactly the same thing, but for some reason it didn't work.
    Edit.: I changed the location and it worked! I'm Brazilian.
    Edit.: I turn back to the original location and the form turns to this: =IFS(H2="";"";A2="";AGORA();VERDADEIRO;A2).

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

      th-cam.com/video/ljvB2arCsNQ/w-d-xo.html

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

      @@ExcelGoogleSheets thank you! I really appreciate your work. As we say in Brasil, tu é foda!

  • @mohamed.montaser
    @mohamed.montaser 4 ปีที่แล้ว

    no matter what, the timestamp column will get recalculated all over again

    • @ExcelGoogleSheets
      @ExcelGoogleSheets  4 ปีที่แล้ว

      Correct. If you don't like that use this th-cam.com/video/548dD3iXetg/w-d-xo.html