min or max in a matrix

Overkill32

New Member
Joined
May 13, 2011
Messages
49
Hello,

In vba, is there a way to use "application.worksheetfunction.min()" to find the minimum of a vector Inside a matrix.
Exemple
Data(1 to 3, 1 to 20) as variant
Inside my Data(1,: ) i have dates. I would like to easily find the minimum date.

Thank you!
 
Last edited:

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try:

Code:
MinData = WorksheetFunction.Min(WorksheetFunction.Index(data, 1, 0))

However, it also depends on how you enter the dates into the matrix. If you read the data from the worksheet (data(1,1)=Range("A1").Value), and it's formatted as a date, your data matrix will hold a text representation of the date. If it's formatted as General, you'll get the number, and the Min will work. Make sure that the values in data are really numbers.
 
Upvote 0

Forum statistics

Threads
1,224,821
Messages
6,181,163
Members
453,021
Latest member
Justyna P

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