Array Brackets {}

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello From Steved

Please is their away off highlighting a worksheet and then changing all the
formulas to anarray {} please as there are abot 70 or so do to and I'm hoping
to avoid doing it Manually.

Thankyou.
 
Dim c As Range

For Each c In ActiveSheet.UsedRange
If c.HasFormula Then
c.FormulaArray = c.Formula
End If
Next c


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Thankyou

Bob Phillips said:
Dim c As Range

For Each c In ActiveSheet.UsedRange
If c.HasFormula Then
c.FormulaArray = c.Formula
End If
Next c


--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top