Excel slow respond

mychi11

Board Regular
Joined
May 11, 2020
Messages
95
Office Version
  1. 2016
Platform
  1. Windows
I am using an index match function in another sheet. It will not appear unless I refresh on the matching cell (A4) in this case
=IFNA(INDEX(Master!$E$2:$E$4966,MATCH('CY NO'!$A4,Master!$AL$2:$AL$4966,0)),"")
 
Rich (BB code):
Ok replace Calculate with Application.CalculateFull
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Ony thing I can suggest is to add this and run it
It simply replaces the + signs in all formulas with itself, so in reality does nothing, but apparently it is a solution in 2016
VBA Code:
Sub InternalRefresh() 
Cells.Replace What:="=", Replacement:="=", LookAt:=xlPart, SearchOrder _ :=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
 End Sub
 
Upvote 0
Hi Michael,

where do u suggest me to paste the code. I tried pasting in the master sheet. It didn't work too. :(
 
Upvote 0
In the module where the sheet needs to be refreshed
 
Upvote 0
the solution doesnt work still. Anyway, thank you so much for your help
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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