Formula that refers to a sheet that does not yet exist - google-sheets

I have a workbook with different sheets for each day of the month. I create the sheets as the days go by. Each sheet refers to the next day (the after sheet that does not yet exist). After the following sheet is created, the formula does not update and leaves the old result. And yet when we select the formula, the good result is visible in the comments:
enter image description here
How do we get the formula to update?
Thank you

set this to every minute
and use this formula:
=IF(NOW()>NOW()-1;
IF($A$1="Date";;IFERROR(INDIRECT(DAY(A1+1)&"/"&TEXT(MONTH(A1);"00")&"/"&YEAR(A1)&"!L18");
"faux")))
it won't be instant but it will take just a minute :)

Related

Can you assist me? I have an attendance spreadsheet in google sheets that needs some formula tweaking

For starters here is a sample sheet I have created. https://docs.google.com/spreadsheets/d/1befqsGQvbPfn0XTGrygLOGcrUIMrICUagJVH0S-2rDw/edit?usp=sharing
My attendance sheet has dates in row 2 and Name and Role in column A and B. I have a formula at the bottom of each column that calculates the total present broken down by role. I also have a formula at the top that displays those totals based on whether or not date matches today. I am trying to eliminate the need for the formula at the bottom as I have to copy it whenever I add a new column. Ideally I want to calculate all of this without the need to update my formula every time I add more dates.
Any help would be so appreciated.
P.S. The formula in C28 isn't needed I was just playing with some ideas.

COUNTIF with IMPORTRANGE with date range and unique ID criteria

I haven't been able to find a solution to get this formula to work after multiple days of searching. The google spreadsheet we use is large and used by many people so I would like to keep this in a separate google sheet using IMPORTRANGE.
Data Needed:
Count of assignments a specific user completed within 7 days and after 7 days based on a start and end date.
Where I'm running into issues:
I simplified the equation by using a small data set in the same sheet to see the main issue. When giving a range for the user # the formula doesn't work anymore. When only comparing it to one user # at a time it does.
For example:
This doesn't work:
=COUNTIFS(C2:C-B2:B,"<7",A2:A,E2)
This one does but needs to have the range for the table to work:
=COUNTIFS(C2:C-B2:B,"<7",A2,E2)
I might be going about this all wrong. Any help I could get is much appreciated.
E2: =UNIQUE(FILTER(A2:A, A2:A<>""))
F2 and drag down: =COUNTIF(ARRAYFORMULA(DAYS(FILTER(C$2:C,$A$2:$A=$E2),FILTER(B$2:B,$A$2:$A=$E2))),"<=7")
G2 and drag down: =COUNTIF(ARRAYFORMULA(DAYS(FILTER(C$2:C,$A$2:$A=$E2),FILTER(B$2:B,$A$2:$A=$E2))),">7")

How can I get specific cells to increase by one hour each hour based off another cells start time

Here is a sample sheet of what I'm trying to accomplish
Basically, I am trying to get Column C to increase by one hour each hour based off of Column E start time. So if Mark starts at 6 when I check at noon it would show 6 hours for him etc.
https://docs.google.com/spreadsheets/d/16Mr3O0v_mCoEQhEBb1iPSayrE4yFlKevAdf-nXaZkKE/edit?usp=sharing
In your column C you can create a formula that references the current date time.
The formula I found in Google Docs is: HOUR(NOW()), which will pull the hour portion of the current datetime. The full formula would then be =HOUR(NOW())-E2 for the first cell in your worksheet.

Add numbers in Column B based and on Day of the Week in Column A and display highest/lowest resulting Day

I have a sheet that lists every day of the year and is updated on a daily basis. Next to each day is a percentage. I would like to display the day of the week that has the highest (and lowest) percentage when adding all relative days throughout the year. (i.e.: all Thursdays)
I am using this formula, which only partially works. It displays the day of the week, but seems to only reference the latest occurrence instead of all in Column A.
B2:
=iferror(INDEX($A4:$A,MATCH(MAX(B4:B),B4:B,0)),"")
B3:
=iferror(INDEX($A4:$A,MATCH(MIN(B4:B),B4:B,0)),"")
Link to a sample book: https://docs.google.com/spreadsheets/d/1_LP5MmmgW3i0zM6ziud9YrWfH5SvuHFbZH3OmRj9W6E/edit#gid=0
I hope this is enough information to understand what I am hoping to accomplish.. Is this possible in Google Sheets?
If I can get this to work my second goal would be to show the highest/lowest for the current month (or a specific month) in addition to the whole year.
Thanks!
Take a look at the shared spreadsheet and see if it does what you want.
https://docs.google.com/spreadsheets/d/1LL4Mgn_IWa-8W6Q0TythdMhBieVFt8ZiKI_UeO9ciTI/edit?usp=sharing
Added col L,O,R,and U for numeric day of week, current month,
current year, and month number. You can hide these columns.
I added some data for testing.

how to change the value in a cell in google spreadsheet when date changes

I want to create a prayer timetable in Google Spreadsheets.
There will be two different spreadsheets. One should display the whole month and the other should display daily information. I want the daily timetable sheet to pull data from the monthly spreadsheet whenever the date changes.
Can somebody tell me how to accomplish this?
With the data source sheet (on the right) called Sheet2 and having ColumnsA:B occupied as shown then in B2 of the sheet on the left:
=VLOOKUP(DAY(NOW()),Sheet2!A:B,2,0)
should achieve your requirement. It happened I also used a formula for the day of the month in ColumnA (=DAY(NOW())) but the value of A2 in Sheet1 does not affect the formula in B2, which should update automatically according to your computer’s clock though might not do so immediately unless you force a save.

Resources