I need to get a snap shot

tcaron

New Member
Joined
Feb 13, 2004
Messages
8
I have a huge report that uses lots name formula's for time. My boss wants me to set it up so she can compare one month report to another. I have attempted to create a macro that pulls the information together, but the base forms all have the same name and my links update messing up the entire comparison. Is there a way for me to set a cell equal to the value that is created from a formula in another cell without creating a link. Is there a way to open all three reports without my old links picking up the new values.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Will setting your macro to Copy and Paste Special > Values on the formulas? This will stop them updating.

Along the lines of:

Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
 
Upvote 0
Not sure exactly what you're trying to do, but it is possible for VBA to open a workbook without updating links:

Workbooks.Open FileName:="x.xls", UpdateLinks:=0
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,960
Latest member
AKSMITH

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