Cool... The way you combine more than one function together is great thing.
@rahulthementor48463 жыл бұрын
Glad to hear
@GovindSharma-ip4iv3 жыл бұрын
Earlier I was looking the same thing and found this. Nice video👍
@rahulthementor48463 жыл бұрын
Cool, thanks
@mustakeemmustakeem62823 жыл бұрын
Good 👍
@rahulthementor48463 жыл бұрын
Thanks
@erl4123 жыл бұрын
Hi, I'm trying to make invoice# every Monday. How does it changes automatically every time I open Google sheet. For example, invoice #001 and then the week after invoice #002. Thanks
@rahulthementor48463 жыл бұрын
It is possible but with App script. I have not started App script yet as my formula Series ongoing but for you I have created a Small script which will help you. function autoIncrement() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var ws = ss.getSheetByName("App"); var cellvalue = ws.getRange("A1").getValue(); cellvalue=cellvalue+1; ws.getRange("A1").setValue(cellvalue); } Copy and paste above code in app script editor and Create Trigger onOpen to run this script automatically when you open sheet next time. Change name of your sheet to App or change name in code. Secondly change Invoice number reside in which cell if it is in A1 that fine otherwise change A1 to desire cell name wherever you invoice number exist.
@umasharma66153 жыл бұрын
Excellent stuff
@rahulthementor48463 жыл бұрын
Thank you! Cheers!
@rahulthementor48463 жыл бұрын
@1CALLFix Solutions: you may use ArrayFormula(ROW(B2:B)+2107999) formula to generate numbers like 2108001, 2108002, 2108003, 2108004. Let me know in case of any other query. thanks
@FORYOU-wb1rx3 жыл бұрын
good job
@upendralokhande42973 жыл бұрын
Please provide Formula In Description Always when you make video