Missing Formula in Cell Again

sdruley

Well-known Member
Joined
Oct 3, 2010
Messages
557
Office Version
  1. 365
Platform
  1. Windows
The problem with the missing formula in a cell has been haunting me for the last 2 months. I have heard of all of the possible causes but none of the solutions have helped me.
I wrote a letter to Microsoft asking that some resources be put on the issue. It would seem that you could have the best spreadsheet on the market, but formulas disappearing would be a show stopper.
Does anyone know here if this problem has been finally resolved? Your time is appreciated.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
What have you tried? What exactly do you mean by missing - is the cell left empty, or replaced by a value?
 
Upvote 0
What have you tried? What exactly do you mean by missing - is the cell left empty, or replaced by a value?
Rory, I hope you are doing well.
My operating parameters are as follows:
1) Windows 10
2) One workbook
3) Two worksheets
4) VBA to bring in data from a text file every 15seconds on sheet2
Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Sub BridgeToSheet(c00, c01, y, e)[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]ReDim SP(y, 4)[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]   Open c00 & c01 For Input As #1[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]     sn = Split(Input(LOF(1), 1), vbCrLf)[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]   Close[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]   For J = UBound(sn) - y To UBound(sn) - 1[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]     sq = Split(sn(J), ",")[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]      For jj = 0 To UBound(sq)[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]          SP(J - UBound(sn) + y, jj) = sq(jj)[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]      Next[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]   Next[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]   Sheets("NEWPHARAOH").Cells(1, e).Resize(y, UBound(sq) + 1) =SP[/COLOR][/SIZE][/FONT]
[FONT=Calibri][SIZE=3][COLOR=#000000]End Sub[/COLOR][/SIZE][/FONT]
5) A for next loop to
a. bring in data from the Chicago MercantileExchange on sheet 1
b. process 30 algorithms
c. cycle time = 0.78 seconds
6) In calculation automatic
7) Affected cells are formatted “General”
8) No user forms
9) No code is specific to the worksheet
What does the failure look like?
1) Confined to sheet2 and not sheet1
2) When I accidently leave one of the data cellsselected, I lose everything in the cell
3) Randomly other cells, not selected, on sheet 2will lose their formula but the static value remains
4) Occurs about every 10 minutes
Steve
 
Upvote 0
Does it happen in Safe Mode?

You refer to "the problem" as though you think it's a known bug. Do you have a basis for that? It's certainly not one I've heard of.
 
Upvote 0
<< unavailable video removed >>

I put together a video of how the formula in column B converts to a value
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,214,570
Messages
6,120,297
Members
448,954
Latest member
EmmeEnne1979

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