Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Or possibly:
Sub Test_worksheetfunction_mode() Dim result As Double Dim objSht As Worksheet Set objSht = Worksheets("Sheet1") result = WorksheetFunction.Mode(Range("A1:J1")) MsgBox result End Sub to make it a bit shorter. -- Vasant "Wei-Dong Xu [MSFT]" wrote in message ... Hi Alesha, Thank you for replying! Furthermore, we can also work with the multiple arguments if you pass range objects instead of values. For example, each cell "A1, B1, ... J1" cantains the number:1, 2, 1, 2, 3, 1, 2, 3, 4, 8(each cell contains one number). I write one sample codes for you: 'Code begin--------------------------- Sub Test_worksheetfunction_mode() Dim result As Double Dim objSht As Worksheet Set objSht = Worksheets("Sheet1") result = WorksheetFunction.Mode(objSht.Range("A1").Value, _ objSht.Range("B1").Value, _ objSht.Range("C1").Value, _ objSht.Range("D1").Value, _ objSht.Range("E1").Value, _ objSht.Range("F1").Value, _ objSht.Range("G1").Value, _ objSht.Range("H1").Value, _ objSht.Range("I1").Value, _ objSht.Range("J1").Value) MsgBox result End Sub 'Code end--------------------------- We will obtain the return value successfully without any mistake. Please feel free to let me know if you have any further questions. Does this answer your question? Thank you for using Microsoft NewsGroup! Wei-Dong Xu Microsoft Product Support Services Get Secure! - www.microsoft.com/security This posting is provided "AS IS" with no warranties, and confers no rights. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Mode function in excel using Text | Excel Discussion (Misc queries) | |||
Mode Function or MODE Function -- Can't get it to work!! | Excel Discussion (Misc queries) | |||
how to get write access from read-onlly mode | Excel Discussion (Misc queries) | |||
3D References Mode() Function Excel | Excel Worksheet Functions | |||
how do I end function mode in excel | Excel Discussion (Misc queries) |