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.
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.
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 | ||||
---|---|---|---|---|
J | K | |||
1 | Last Done | Date | ||
2 | 03/09/2020 | 03/09/2020 | ||
3 | 53847:39FH | |||
4 | 11/10/2019 | 11/10/2019 | ||
5 | 30/03/2022 | 30/03/2022 | ||
6 | 16/10/2021 | 16/10/2021 | ||
7 | 16/10/2021 | 16/10/2021 | ||
8 | 16/10/2021 | 16/10/2021 | ||
9 | 29/03/2022 | |||
10 | 16/10/2021 | |||
11 | 11/10/2019 | |||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
K2:K11 | K2 | =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.