Weird excel issue

MiniFav

Board Regular
Joined
Mar 10, 2020
Messages
81
Office Version
  1. 365
Platform
  1. Windows
I have come to this weird issue where excel isn't using the target cells for my formula until i double click into each cell that that kind of refreshes it into working.

in the example below you can see rows 9,10 and 11 have nothing in column K, however if i were to double click into one of these values in columnn J then column K would start working.

test.xlsx
JK
1Last DoneDate
203/09/202003/09/2020
353847:39FH 
411/10/201911/10/2019
530/03/202230/03/2022
616/10/202116/10/2021
716/10/202116/10/2021
816/10/202116/10/2021
929/03/2022 
1016/10/2021 
1111/10/2019 
Sheet1
Cell Formulas
RangeFormula
K2:K11K2=IF(ISBLANK(J2),"",IF(ISNUMBER(J2),J2,""))


I am looking for either a solution to stop this (I have automatic formulas on) or maybe a VBA macro to cycle through roughly 3000 cells within column J to refresh them all for me.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
That tells me that the values you have in column J are actually entered as Text, and not as valid Numbers/Dates.
When you click in one and press enter, you are re-entering it as a number, and then your formula in column K (which uses the ISNUMBER function) will work.

So you need to convert all the values in column J to valid Date/Number entries (Dates really are just Numbers with a special Date format).
You can convert column J all at one by selecting it, going to "Text to Columns" from the Data menu, hit next until you get to Step 3, then select the Date option, choosing the DMY format, and clicking Finish.

It shouldn't affect the non-date value you show in cell J3.

Also note, if after running the "Text to Columns" step, your dates start showing up as big integers, simply change the format of column J to your desired date format.
Those actually are valid dates! As I said, Dates are really just Numbers in Excel, specifically the number of days since 1/0/1900, with some date format applied.
 
Upvote 1
Solution
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,539
Members
449,038
Latest member
Guest1337

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