![]() |
![]() |
|
|||||||
| 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: May 2002
Location: weaverl
Posts: 3
|
cell f20 is a percentage calculated by several other cells. Cell C56 is a total of several differant cells. I want c58 to be c56*f20 BUT I want to maximize it to 100% so if f20 is 80% the c58 will be c56*80% BUT if f20 is 110% c58 will be c56*100. I tried the if then stuff but I guess I just have the wrong order?... any sugestions?
|
|
|
|
|
|
#2 | |
|
Board Regular
Join Date: Mar 2002
Location: Sydney/Brisbane , Australia
Posts: 539
|
=IF(f20>1,C56,C56*f20)
is that it? Quote:
|
|
|
|
|
|
|
#3 |
|
New Member
Join Date: May 2002
Location: weaverl
Posts: 3
|
Thanks!.. wow isn't math logic great!?!
|
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Mar 2002
Location: Sydney/Brisbane , Australia
Posts: 539
|
|
|
|
|
|
|
#5 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
=C56*MIN(F20,100%) or =C56*MIN(F20,1) |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|