Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi friends I have a Column containing number. Everyday I add one value to this column. (say todays there are 20 rows than tomm. I will add one value and will make 21 rows). I want to display the minimum value from these values. How to do this using *VBA*? Thanks in advance :) JohnBest:) -- johnbest ------------------------------------------------------------------------ johnbest's Profile: http://www.excelforum.com/member.php...o&userid=29694 View this thread: http://www.excelforum.com/showthread...hreadid=497224 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you don't have anything else in that column, you could just use:
=min(a:a) as a worksheet formula. In code, you could use: msgbox application.min(activeworkbook.worksheets("sheet1" ).range("a:a")) johnbest wrote: Hi friends I have a Column containing number. Everyday I add one value to this column. (say todays there are 20 rows than tomm. I will add one value and will make 21 rows). I want to display the minimum value from these values. How to do this using *VBA*? Thanks in advance :) JohnBest:) -- johnbest ------------------------------------------------------------------------ johnbest's Profile: http://www.excelforum.com/member.php...o&userid=29694 View this thread: http://www.excelforum.com/showthread...hreadid=497224 -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
divide column(x) by column(y) to give column(x/y) in excel? | New Users to Excel | |||
Calculating column A * column B = Results in another column | Excel Worksheet Functions | |||
Referencing date column A & time column B to get info from column | Excel Discussion (Misc queries) | |||
Return text in Column A if Column B and Column K match | Excel Worksheet Functions | |||
Based on a condition in one column, search for a year in another column, and display data from another column in the same row look | Excel Discussion (Misc queries) |