+ Reply to Thread
Results 1 to 2 of 2

counting cells with formulas

Hybrid View

  1. #1
    Registered User
    Join Date
    05-16-2006
    Posts
    93

    counting cells with formulas

    Hi,
    I have a forecasting sheet and get asked to run totals off it so I need to differentiate between a cell that has a formula in it (i.e a forecast date e.g e21+7) and a cell that has an actual date entered into it e.g 23/1/08.

    The bottom line is I need to count entries in a column that are real dates that have been entered and ignore the ones that have forecast dates.

    Any help much appreciated

    B

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Maybe a simple macro. Press Alt + F11 > insert Module > paste in the below > close VB editor. Then use the formula below. Change range as required

    Function CntFormula(Rng As Range)
        Dim Cnt As Long
        For Each c In Rng
            If c.HasFormula Then
                Cnt = Cnt + 1
            End If
        Next c
        CntFormula = Cnt
    End Function
    =CntFormula(A1:A8)

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Counting individual coloured cells that are merged.
    By JohnSan in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-06-2008, 01:11 PM
  2. Counting different info cells
    By jazzvb in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 05-01-2008, 09:53 AM
  3. Replies: 2
    Last Post: 12-24-2007, 08:24 AM
  4. Replies: 4
    Last Post: 10-30-2007, 01:41 PM
  5. Replies: 7
    Last Post: 10-18-2007, 11:03 AM

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