=now() issue with excel for web

BigBoiJack

New Member
Joined
Dec 3, 2019
Messages
3
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. MacOS
I currently have a document that is shared via Onedrive to multiple other users who all use it simultaneously.
within this Spreedsheet is a simple if formula

O3=IF(K3=" ", " ",IF(K3="vacant"," ", " ",IF(K3="leave", " ", " ",IF(K3<>R3,R1,O3))))

where
K3= current status of a position (eg leave, vacant, current etc.) selected from a list
R3= the following fomula "=IF(K3=R3,R3,K3)"
R1= now()

pretty much what i want is when the status changes in cell K3 to input a time stamp into O3 unless nothing/vacant/leave is the status then delete the time stamp.
this is working fine on my spreadsheet both in excel and the web version. but once the document is shared with other users so they can also edit statuses i start getting a strange issue.
when the page is refreshed the times in cell O3 will all change by about 12 hours and i will notice the R1 cell time will change momentarily to the 12hour difference before changing back to the current time.

i am unsure what is causing this issue, formula error, or maybe a setting within excel for web?

thankyou for any help
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
My first take on this is that you have a reciprocal formula in R3. Unless you stated your cell address wrong.
 
Upvote 0
The same for Cell O3. The formula is referencing itself. Anytime a workbook is recalculated, Now() will change. If you wanted a static date when the person changed cell K3, that won't happen.
 
Upvote 0
What you need is for VBA to trigger a cell change and update the date in cell K3 to the current date.
 
Upvote 0
due to the fact that i am using excel for the web VBA isnt an option. these formulas work perfectly until i share the workbook with other users
 
Upvote 0
I'm pretty sure that circular references will fail for the online version just as they do for a true workbook. Making the result of a cell equal itself is a circular reference. The colored cells show this.
This formula in cell R3: =IF(K3=R3,R3,K3) is saying if I am equal to another cell then equal me, else if I'm different than the other cell, make me equal to that cell
I know you are asking for it to only change if they are different, but Excel doesn't work that way.

[COLOR=rgb(184 said:
O3[/COLOR]=IF(K3=" ", " ",IF(K3="vacant"," ", " ",IF(K3="leave", " ", " ",IF(K3<>R3,R1,O3))))

where
K3= current status of a position (eg leave, vacant, current etc.) selected from a list
R3= the following fomula "=IF(K3=R3,R3,K3)"
R1= now()
 
Upvote 0
Just as an aside the problem, I wouldn't return a space as a result for the formula, as it may cause issues later on.
Myabe this way

VBA Code:
=IF(OR(K3="", K3="vacant",K3="leave"),"",IF(K3<>R3,R1,O3))
 
Upvote 0
Michael, the formula you just posted also has a circular reference because it is in the cell O3
 
Upvote 0
I can't seem to get around the problem. There needs to be a static value in this or else it will continue to change.
 
Upvote 0
Michael, the formula you just posted also has a circular reference because it is in the cell O3
I didn't suggest the formula was in O3.....I simply made an adjustment to the formula provided....:cool:
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,022
Members
448,939
Latest member
Leon Leenders

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top