![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 1
|
I am trying to write a formula for a financial project. The object of my project is when two cells values are compared the lower amount should be eliminated and the larger amount should be reported, therefore the lesser of the two cells should appear in one column and the greater should appear in another. Please Help, I'm all out of ideas and the project request that I compare about 25,000 loans, a formula would be very helpful.
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
If you data is in columns A and B starting in row 2 then place this formula in column C for the larger values: =IF(A2>B2=TRUE,A2,B2)
Place this formula in column D for the lesser values: =IF(A2 Is this what you want? _________________ Hope this helps. Kind regards, Al. [ This Message was edited by: Al Chara on 2002-04-09 15:10 ] |
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Mar 2002
Location: Chicago, IL USA
Posts: 2,042
|
Quote:
Use the MIN and MAX functions in the respective columns. HTH, Jay |
|
|
|
|
|
|
#4 |
|
New Member
Join Date: Mar 2002
Location: San Ramon CA
Posts: 23
|
MIN and MAX work great for that sort of thing. They're also useful in that you're not limited to two numbers; they'll return the min or max value from any range.
Something to keep in mind when using MIN... if some of the rows in the range return 0, but you don't want to return 0 as your "minimum" value, you need to exclude those cells from consideration. Otherwise 0 will be the MIN value returned, which may not be what you want (you may want the "next value up from 0). The way I do that is, in the rows themselves, the formula is set up so that if 0 is the result, return a string or other non-numeric value instead, such as a dash. That way, when your MIN and MAX comparisons are done, no zeros are considered, and string results are skipped. |
|
|
|
|
|
#5 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,319
|
Quote:
How about: =SMALL(A1:D1,COUNTIF(A1:D1,0)+1) This would give you the MIN of A1:D1, excluding zeroes. Aladin |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|