Dec 12, 2007 #1 Zonie32 Technical User Joined Jan 13, 2004 Messages 242 Location US Hi. I am trying to get a formula to work: Here's what im trying to do.. if 499.68*100% is greater than 200, than display 200. if not, then display the product of 499.68*100% say that 499.68 = cell A2 anyone??
Hi. I am trying to get a formula to work: Here's what im trying to do.. if 499.68*100% is greater than 200, than display 200. if not, then display the product of 499.68*100% say that 499.68 = cell A2 anyone??
Dec 12, 2007 #2 dinger2121 Programmer Joined Sep 11, 2007 Messages 439 Location US =IF(A2*1> 200,200,A2*1) Upvote 0 Downvote
Dec 12, 2007 #3 onedtent Technical User Joined Aug 16, 2002 Messages 460 Location CA wow... isn't anything multiplied by one the same number? or is it that i don't know math? if your percentage is in A1 then =IF(A2*A1>200,200,A2*A1) _______________________________________ _______________________________________ Upvote 0 Downvote
wow... isn't anything multiplied by one the same number? or is it that i don't know math? if your percentage is in A1 then =IF(A2*A1>200,200,A2*A1) _______________________________________ _______________________________________
Dec 12, 2007 #4 dinger2121 Programmer Joined Sep 11, 2007 Messages 439 Location US sorry....copied the wrong cell's formula... Upvote 0 Downvote
Dec 12, 2007 #5 AnotherHiggins Technical User Joined Nov 25, 2003 Messages 6,259 Location US Well, that can be used as a method of turning text to numbers. But I'm not sure why the OP wants to check 100% of a number.... [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting. Upvote 0 Downvote
Well, that can be used as a method of turning text to numbers. But I'm not sure why the OP wants to check 100% of a number.... [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting.
Dec 12, 2007 #6 M mintjulep Technical User Joined Aug 20, 2004 Messages 1,562 Location JP Or simpler: =MIN(A2, 200) Upvote 0 Downvote