View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_160_] mudraker[_160_] is offline
external usenet poster
 
Posts: 1
Default How to activate array formulas in a range of cells all at the same time?

Kareena

place this code on the worksheet module


Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
Dim c As Range
For Each c In Range(Target.Address)
Selection.FormulaArray = c.Formula
Next
End Su

--
Message posted from http://www.ExcelForum.com