I did not see number of pages as 70.
To convert formulas in all sheets macro code.
Sub FormulaChangeAll()
Dim val
Dim T As Long, LR As Long
Dim Sh As Worksheet
Application.EnableEvents = False
Application.DisplayAlerts = False
For Each Sh In Worksheets
With Sh
LR = .Range("B" & Rows.Count).End(xlUp).Row
For T = 10 To LR
val = .Cells(T, "B").Value
'.Range("C" & T).Formula = "=2*5"
.Cells(T, "C").Formula = "=IFERROR('" & val & "'!B5,"""")"
.Cells(T, "D").Formula = "=IFERROR('" & val & "'!B15,"""")"
.Cells(T, "E").Formula = "=IFERROR('" & val & "'!B12,"""")"
.Cells(T, "F").Formula = "=IFERROR('" & val & "'!Z2,"""")"
.Cells(T, "G").Formula = "=IFERROR('" & val & "'!W1,"""")"
Next T
End With
LR = 0
Next Sh
Application.EnableEvents = True
Application.DisplayAlerts = True
End Sub
Worksheet event is also required to change formulas as and when column B value changed.
Bookmarks