Dec 12, 2007 #1 Zonie32 Technical User Jan 13, 2004 242 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 #3 onedtent Technical User Aug 16, 2002 460 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 Sep 11, 2007 439 US sorry....copied the wrong cell's formula... Upvote 0 Downvote
Dec 12, 2007 #5 AnotherHiggins Technical User Nov 25, 2003 6,259 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 Aug 20, 2004 1,547 JP Or simpler: =MIN(A2, 200) Upvote 0 Downvote