Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Converting Numbers to $$

I need some help if you please

I have a COLUMN of arbitrary numbers & Blanks:
A1=643, A2=10, A3 -A7=Blank, A8=1038. A9=1039,A10=9 etc,.

I need a formula for (COLUMN B) that will convert COLUMN A into the Number 1
for the largest number (above B9=1), to the smallest number (A10=5),
B3=BLANK, etc.

In addition I need to corolate COLUMN C such that "B9" automatically inserts
a largest pre-assigned doller value, "B8" is assigned a smaller
pre-assigned doller value, "B1" gets a next smaller pre-assigned doller
value, "A1" get a
smaller & fixed 3rd doller value.
All other rowes in COLUMN C are to remain blank.

As far as the ROW 's go I have a fixed number of 20-- (Example: ROW 13-33,
or 6-26, etc.). The rows can start at any ROW number. As far as daily entry's
go I will be enterinting in groups of 5, 10, 15, or 20 enteries only.

If this is to much to figure out just let me know as I do not wish to cause
a ton of work.
At any rate thank you for at least looking at it.

fredmr.

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default Converting Numbers to $$

Part 1:
In B1 you can use =RANK(A1,A:A) or =RANK(A1, $A$1:$A$20) with 20
replaced by the correct value.

However the blanks with return #N/A so we could use
=IF(ISNUMBER(A1),RANK(A1,A:A),"")

Part 2: I do not follow

best wishes

--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"fredmr" wrote in message
...
I need some help if you please

I have a COLUMN of arbitrary numbers & Blanks:
A1=643, A2=10, A3 -A7=Blank, A8=1038. A9=1039,A10=9 etc,.

I need a formula for (COLUMN B) that will convert COLUMN A into the Number
1
for the largest number (above B9=1), to the smallest number (A10=5),
B3=BLANK, etc.

In addition I need to corolate COLUMN C such that "B9" automatically
inserts
a largest pre-assigned doller value, "B8" is assigned a smaller
pre-assigned doller value, "B1" gets a next smaller pre-assigned doller
value, "A1" get a
smaller & fixed 3rd doller value.
All other rowes in COLUMN C are to remain blank.

As far as the ROW 's go I have a fixed number of 20-- (Example: ROW 13-33,
or 6-26, etc.). The rows can start at any ROW number. As far as daily
entry's
go I will be enterinting in groups of 5, 10, 15, or 20 enteries only.

If this is to much to figure out just let me know as I do not wish to
cause
a ton of work.
At any rate thank you for at least looking at it.

fredmr.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Converting Numbers to $$



"Bernard Liengme" wrote:

Part 1:
In B1 you can use =RANK(A1,A:A) or =RANK(A1, $A$1:$A$20) with 20
replaced by the correct value.

However the blanks with return #N/A so we could use
=IF(ISNUMBER(A1),RANK(A1,A:A),"")

Part 2: I do not follow

best wishes

--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"fredmr" wrote in message
...
I need some help if you please

I have a COLUMN of arbitrary numbers & Blanks:
A1=643, A2=10, A3 -A7=Blank, A8=1038. A9=1039,A10=9 etc,.

I need a formula for (COLUMN B) that will convert COLUMN A into the Number
1
for the largest number (above B9=1), to the smallest number (A10=5),
B3=BLANK, etc.

In addition I need to corolate COLUMN C such that "B9" automatically
inserts
a largest pre-assigned doller value, "B8" is assigned a smaller
pre-assigned doller value, "B1" gets a next smaller pre-assigned doller
value, "A1" get a
smaller & fixed 3rd doller value.
All other rowes in COLUMN C are to remain blank.

As far as the ROW 's go I have a fixed number of 20-- (Example: ROW 13-33,
or 6-26, etc.). The rows can start at any ROW number. As far as daily
entry's
go I will be enterinting in groups of 5, 10, 15, or 20 enteries only.

If this is to much to figure out just let me know as I do not wish to
cause
a ton of work.
At any rate thank you for at least looking at it.

fredmr.


thanks bernard,


i'll see what i can do with this. i will let you know. (see-no caps)

fredmr

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Converting Numbers to $$



"Bernard Liengme" wrote:

Part 1:
In B1 you can use =RANK(A1,A:A) or =RANK(A1, $A$1:$A$20) with 20
replaced by the correct value.

However the blanks with return #N/A so we could use
=IF(ISNUMBER(A1),RANK(A1,A:A),"")

Part 2: I do not follow

best wishes

--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"fredmr" wrote in message
...
I need some help if you please

I have a COLUMN of arbitrary numbers & Blanks:
A1=643, A2=10, A3 -A7=Blank, A8=1038. A9=1039,A10=9 etc,.

I need a formula for (COLUMN B) that will convert COLUMN A into the Number
1
for the largest number (above B9=1), to the smallest number (A10=5),
B3=BLANK, etc.

In addition I need to corolate COLUMN C such that "B9" automatically
inserts
a largest pre-assigned doller value, "B8" is assigned a smaller
pre-assigned doller value, "B1" gets a next smaller pre-assigned doller
value, "A1" get a
smaller & fixed 3rd doller value.
All other rowes in COLUMN C are to remain blank.

As far as the ROW 's go I have a fixed number of 20-- (Example: ROW 13-33,
or 6-26, etc.). The rows can start at any ROW number. As far as daily
entry's
go I will be enterinting in groups of 5, 10, 15, or 20 enteries only.

If this is to much to figure out just let me know as I do not wish to
cause
a ton of work.
At any rate thank you for at least looking at it.

fredmr.



Bernard,


The first part worked like a charm. As far as the rest of my problem I will
take that up separately.

Thanks again.

fredmr

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Converting hr min sec into numbers [email protected] Excel Worksheet Functions 5 August 17th 07 10:29 PM
Converting positive numbers to negative numbers Treg67 Excel Worksheet Functions 4 July 17th 06 03:57 PM
Converting numbers formatted as text to numbers Bill Excel Discussion (Misc queries) 1 July 19th 05 07:10 PM
Converting Numbers Richard Excel Discussion (Misc queries) 5 April 15th 05 01:58 AM
converting to numbers smintey Excel Worksheet Functions 1 February 24th 05 02:51 PM


All times are GMT +1. The time now is 05:32 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"