Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default List worksheetsheet functions

Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,934
Default List worksheetsheet functions

Can you clarify that a little? Do you mean list all the built-in Excel
functions that can be used in a formula? Or did you mean list the all the
functions that are present in a worksheet? Or did you actually mean list the
formulas that are used in the cells on a worksheet? Also, if not the first,
do you mean just for one sheet or for all sheets?

--
Rick (MVP - Excel)


"Jan Kronsell" wrote in message
...
Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default List worksheetsheet functions

You can get a printable list of worksheet functions available to VBA by
typing the following into the VBA Help search box, then clicking on it in the
help options window.

List of Worksheet Functions Available to Visual Basic




"Jan Kronsell" wrote:

Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default List worksheetsheet functions

Also, in Excel help, type:

List of worksheet functions (by category)




"Jan Kronsell" wrote:

Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default List worksheetsheet functions

What I like is a list of available built-in worksheet-functions, listed in a
column in a sheet, one function in each cell.
If possible it should also list UDF's from installed add-ins. Sometinh like
this

ABS
ADDRESS
VLOOKUP
HLOOKUP
MyFunction1
MyFunction2

and so on.

Jan

Rick Rothstein wrote:
Can you clarify that a little? Do you mean list all the built-in Excel
functions that can be used in a formula? Or did you mean list the all
the functions that are present in a worksheet? Or did you actually
mean list the formulas that are used in the cells on a worksheet?
Also, if not the first, do you mean just for one sheet or for all
sheets?

"Jan Kronsell" wrote in message
...
Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default List worksheetsheet functions

I know that, but I need the list en a Worksheet.

Jan

JLGWhiz wrote:
You can get a printable list of worksheet functions available to VBA
by typing the following into the VBA Help search box, then clicking
on it in the help options window.

List of Worksheet Functions Available to Visual Basic




"Jan Kronsell" wrote:

Is it possible, using VBA ,to list alle worksheet functions in Excel?

Jan



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 88
Default List worksheetsheet functions

You can also look up the RegisteredFunctions property in VBA Help. This will
list any non-built in functions (like those from DLLs or add-ins like the
Analysis TookPak). Their example code:

Sub List_Registered_Functions()
theArray = Application.RegisteredFunctions
If IsNull(theArray) Then
MsgBox "No registered functions"
Else
For i = LBound(theArray) To UBound(theArray)
For j = 1 To 3
Worksheets("Sheet1").Cells(i, j). _
Formula = theArray(i, j)
Next j
Next i
End If
'
End Sub

HTH,

Eric

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default List worksheetsheet functions

Thanks.

Jan

egun wrote:
You can also look up the RegisteredFunctions property in VBA Help.
This will list any non-built in functions (like those from DLLs or
add-ins like the Analysis TookPak). Their example code:

Sub List_Registered_Functions()
theArray = Application.RegisteredFunctions
If IsNull(theArray) Then
MsgBox "No registered functions"
Else
For i = LBound(theArray) To UBound(theArray)
For j = 1 To 3
Worksheets("Sheet1").Cells(i, j). _
Formula = theArray(i, j)
Next j
Next i
End If
'
End Sub

HTH,

Eric



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to set an arg list for my VBA functions shelfish Excel Programming 4 May 26th 08 09:57 PM
Identify & List unique values from a list using functions/formulas momtoaj Excel Worksheet Functions 3 May 31st 07 06:18 PM
pivot table: create worksheetsheet using pivot table Pivot Tables and New Worksheets Excel Discussion (Misc queries) 1 June 1st 05 10:01 PM
List of VBA Functions ExcelMonkey[_144_] Excel Programming 2 June 8th 04 04:56 PM
List all Functions James[_9_] Excel Programming 6 July 21st 03 06:07 PM


All times are GMT +1. The time now is 06:14 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"