Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How do I setup a formula to select the LAST number in a series? In the
series I have conditional formatting so there is an * if the condition is not met. I need to obtain the LAST number before the *. For example 0.02415 0.0195 0.01185 0.00415 * * * I want it to say 0.00415 but in another column the number could be shifted like 0.114 0.0499 * * * * * * so I want it to say 0.0499. The list is to long for IF equations. Thank you |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the "last" number is always the smallest number in the range, as in your
examples, then this would do it........ =SMALL(a:a,1) Vaya con Dios, Chuck, CABGx3 "Biocellguy" wrote in message ... How do I setup a formula to select the LAST number in a series? In the series I have conditional formatting so there is an * if the condition is not met. I need to obtain the LAST number before the *. For example 0.02415 0.0195 0.01185 0.00415 * * * I want it to say 0.00415 but in another column the number could be shifted like 0.114 0.0499 * * * * * * so I want it to say 0.0499. The list is to long for IF equations. Thank you |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Or:
=MIN(rng) If the last number might not be the smallest number: =LOOKUP(10^10,rng) Biff "CLR" wrote in message ... If the "last" number is always the smallest number in the range, as in your examples, then this would do it........ =SMALL(a:a,1) Vaya con Dios, Chuck, CABGx3 "Biocellguy" wrote in message ... How do I setup a formula to select the LAST number in a series? In the series I have conditional formatting so there is an * if the condition is not met. I need to obtain the LAST number before the *. For example 0.02415 0.0195 0.01185 0.00415 * * * I want it to say 0.00415 but in another column the number could be shifted like 0.114 0.0499 * * * * * * so I want it to say 0.0499. The list is to long for IF equations. Thank you |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The last number is not necessarily the smallest. The Lookup function works
great. Thank you. I could not figure out the meaning of that function. "T. Valko" wrote: Or: =MIN(rng) If the last number might not be the smallest number: =LOOKUP(10^10,rng) Biff "CLR" wrote in message ... If the "last" number is always the smallest number in the range, as in your examples, then this would do it........ =SMALL(a:a,1) Vaya con Dios, Chuck, CABGx3 "Biocellguy" wrote in message ... How do I setup a formula to select the LAST number in a series? In the series I have conditional formatting so there is an * if the condition is not met. I need to obtain the LAST number before the *. For example 0.02415 0.0195 0.01185 0.00415 * * * I want it to say 0.00415 but in another column the number could be shifted like 0.114 0.0499 * * * * * * so I want it to say 0.0499. The list is to long for IF equations. Thank you |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See this:
http://xldynamic.com/source/xld.LastValue.html Biff "Biocellguy" wrote in message ... The last number is not necessarily the smallest. The Lookup function works great. Thank you. I could not figure out the meaning of that function. "T. Valko" wrote: Or: =MIN(rng) If the last number might not be the smallest number: =LOOKUP(10^10,rng) Biff "CLR" wrote in message ... If the "last" number is always the smallest number in the range, as in your examples, then this would do it........ =SMALL(a:a,1) Vaya con Dios, Chuck, CABGx3 "Biocellguy" wrote in message ... How do I setup a formula to select the LAST number in a series? In the series I have conditional formatting so there is an * if the condition is not met. I need to obtain the LAST number before the *. For example 0.02415 0.0195 0.01185 0.00415 * * * I want it to say 0.00415 but in another column the number could be shifted like 0.114 0.0499 * * * * * * so I want it to say 0.0499. The list is to long for IF equations. Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2nd Axes - primary series data of only 1 series disappears! | Charts and Charting in Excel | |||
Changing series information for approximately 60 series in a workb | Charts and Charting in Excel | |||
chart data series -- plot a table as a single series | Charts and Charting in Excel | |||
how do I change a line series to a column series in excel? | Charts and Charting in Excel | |||
series graph -- one series being added to another series | Charts and Charting in Excel |