View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Wazooli Wazooli is offline
external usenet poster
 
Posts: 51
Default need help writing normalize function

I am having trouble writing a normalization function. Basically, I would
like to choose 2 ranges, the first with values, and the second to have
normalized values filled in. If my first range is A1:A20, the formula should
be (placed in B1):

=A1/max(A$1:A$20)

, and filled from B1:B20.

I would like this function to be flexible in terms of the size of the
ranges, with equal size for both being mandatory. In the end, I would like
the values to be converted into %s.

wazooli