Excel UDF to return formula count

coolactuary

New Member
Joined
Apr 17, 2016
Messages
5
The examples I've checks, including from Excel MVPs have used Subs rather than Functions. I can get a Sub to work and I can get a Function to debug.print the right result, but when I call the function from a sheet I get the full UsedRange count, rather than the function count - see code below. Apologies if I'm being naive:

Code:
Function HowManyFormulasFixedSheet()
' Called from Sheet2, this *incorrectly* returns 6 formulas i.e. the full used range on Sheet1
    CountFormulas = Sheets("Sheet1").UsedRange.SpecialCells(xlCellTypeFormulas).Count
    Debug.Print "HowManyFormulasFixedSheet count: " & CountFormulas
    HowManyFormulasFixedSheet = CountFormulas
End Function


Sub HowManyFormulasFixedSheetSub()
' This *correctly* prints formula count of 1.
    CountFormulas = Sheets("Sheet1").UsedRange.SpecialCells(xlCellTypeFormulas).Count
    Debug.Print "HowManyFormulasFixedSheetSub count: " & CountFormulas
End Sub


Function HowManyFormulasFixedSheetALT()
' This correctly returns 1 formula
    CountFormulas = 0
    For Each cell In Sheets("Sheet1").UsedRange.Cells
        CountFormulas = CountFormulas + Abs(cell.HasFormula)
    Next cell
    
    Debug.Print "HowManyFormulasFixedSheetALT count: " & CountFormulas
    HowManyFormulasFixedSheetALT = CountFormulas
    
End Function
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
You could write your UDF this way...
Code:
Function HowManyFormulasFixedSheet()
  Dim Cell As Range
  For Each Cell In Sheets("Sheet1").UsedRange
    HowManyFormulasFixedSheet = HowManyFormulasFixedSheet - Cell.HasFormula
  Next
End Function
Note, though, that this UDF includes the formula containing this UDF function in its count.
 
Upvote 0
Thanks. Reviewing the Decision Models bullets on the page you reference, I was aware of a function not being able to alter t[FONT=&quot]he value or formula or properties of another cell (that's what a Sub is for!) but not that a function can't use "[/FONT][FONT=&quot]FIND, SpecialCells, CurrentRegion, CurrentArray, GOTO, SELECT, PRECEDENTS etc : although you can use Range.End."

What misled me - and I confess to remaining somewhat confused / surprised - is that my first function [/FONT]
HowManyFormulasFixedSheet [FONT=&quot]managed to successfully use [/FONT]Sheets("Sheet1").UsedRange.SpecialCells(xlCellTypeFormulas).Count [FONT=&quot]when I look at the function in VBE and run it using F5.

Any ideas why this should be?

Thanks again.

[/FONT]
 
Upvote 0
Thanks. Is that not extrememly similar to my Function HowManyFormulasFixedSheetALT() above - or have I missed your point?
 
Upvote 0
About post 5
Yes, the function works if it is called by a Sub, for example:

Code:
Sub Main()
    Dim MyVar As Long
    
    MyVar = HowManyFormulasFixedSheet()
    Debug.Print "MyVar= " & MyVar
End Sub

Function HowManyFormulasFixedSheet()
    Dim CountFormulas As Long

    CountFormulas = Sheets("Sheet1").UsedRange.SpecialCells(xlCellTypeFormulas).Count
    Debug.Print "HowManyFormulasFixedSheet count: " & CountFormulas
    HowManyFormulasFixedSheet = CountFormulas
End Function

But doesn't work correctly if it's called by a formula in a cell
=HowManyFormulasFixedSheet()

M.
 
Last edited:
Upvote 0
Apologies Rick, I ended I replying to my own post rather than your repsonse. Trying again...

Thanks. Is that not extrememly similar to my Function HowManyFormulasFixedSheetALT() above - or have I missed your point?
Similar, yes, but more compact.
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,447
Members
448,898
Latest member
drewmorgan128

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top