How edit links-brake links

Meko1

New Member
Joined
Oct 20, 2020
Messages
44
Office Version
  1. 2016
Platform
  1. Windows
Hello

I have following formula in cell B6 with indirect function- "=INDIRECT("'[Current.xlsx]2020-2021'!$b$"&SHEET($A$1)-7,TRUE)", which is working perfectly what I want to do, but now I encounter the following problem;- usually when typing formula from other workbook you can just go edit links=> and brake links and gives you the value in the cell instead of formula.
Can you suggest solution.

P.S if the problem is not clear let me know and I will try to explain it better.

Thanks in advance.
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
 
Upvote 0
Hello
I read it but it gives no solution to the other guys question, and what I understood it is impossible to break it, am I right? or is there any other way to make the formula just in value format?
 
Upvote 0
It says the only way is to copy/pastevalue.
 
Upvote 0
Well sure but, since I need to do it for few hundreds of sheets I would like to make easier and my indirect function works like this, it pastes the value in B6 cell on lets say sheet1, and after adding the next sheet, sheet2 and pasting same formula inside B6 it gives me not the same value, but next value, so reads data from other workbook 1 cell below and pastes it. So after copy-pasting all the data in all those sheets I was thinking to create some kind of macro which would allow it to make all the formulas to go away and just to leave formulas and as I am guessing now it is impossible.
 
Upvote 0
To convert B6 on every sheet to value :
VBA Code:
Dim ws As Worksheet
For Each ws In Worksheets
    ws.[B6].Value = ws.[B6]
Next
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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