Hi, Can anyone tells me that how many total built in commands are there in excel. Rajeev
R RAJEEV CHADHA Apr 20, 2005 #1 Hi, Can anyone tells me that how many total built in commands are there in excel. Rajeev
R Ron de Bruin Apr 20, 2005 #2 Hi Run this macro Sub test() Dim Cbar As CommandBar Dim BCOUNT As Long BCOUNT = 0 For Each Cbar In Application.CommandBars If Cbar.BuiltIn = True Then BCOUNT = BCOUNT + 1 End If Next MsgBox BCOUNT End Sub
Hi Run this macro Sub test() Dim Cbar As CommandBar Dim BCOUNT As Long BCOUNT = 0 For Each Cbar In Application.CommandBars If Cbar.BuiltIn = True Then BCOUNT = BCOUNT + 1 End If Next MsgBox BCOUNT End Sub
J JulieD Apr 20, 2005 #3 do you mean functions like SUM ... if so then from help (Excel specifications and limits) Number of available worksheet functions 329 the analysis toolpak gives, i believe, an additional 110
do you mean functions like SUM ... if so then from help (Excel specifications and limits) Number of available worksheet functions 329 the analysis toolpak gives, i believe, an additional 110
R Ron de Bruin Apr 20, 2005 #4 Hi My example is for the CommandBars I see you want it for controls (which CommandBar and why ?)
R Ron de Bruin Apr 20, 2005 #5 Number of available worksheet functions 329 Ahaaa Forget my answer(this is not programming <g>)