+ Reply to Thread
Results 1 to 3 of 3

alternative to Ctrl+Shift+Enter on every cell of a large sheet

Hybrid View

ffinstad alternative to... 03-04-2008, 10:34 PM
sweep Hi, This code will convert... 03-05-2008, 05:10 AM
ffinstad Perfect. That did it. You... 03-05-2008, 12:30 PM
  1. #1
    Registered User
    Join Date
    03-04-2008
    Posts
    2

    alternative to Ctrl+Shift+Enter on every cell of a large sheet

    I have a very large spreadsheet with array formulas (aka CSE formulas) in every cell. For me to activate the formulas I need to place my cursor in the formula bar and hit Ctrl+Shift+Enter for *every cell*, which in my case is about 9,000 cells.

    Is there any way to activate the CSE formulas for all cells at once?

    Any help is greatly appreciated.

    Thanks,
    Franco

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454
    Hi,

    This code will convert all formaulas within selection to arrays.

    Sub frm2array()
    Dim frm As Variant, rcell As Range
    For Each rcell In Selection
    frm = rcell.Formula
    rcell.FormulaArray = frm
    Next rcell
    End Sub
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  3. #3
    Registered User
    Join Date
    03-04-2008
    Posts
    2
    Perfect. That did it. You just saved my mucho hours of monkey work!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1