RE: IF condition
Hello Ben, Thank you for your post, The IF function is used when you require to know if a condition is true or false, ie is 100 greater than 50? if the answer is true then you require a certain action to take place, if it is false then you require a different action to take place. The function is laid out like this; = IF(condition,true,false) so it would look like = =IF(100>50,100*2,0) translated means, if 100 is greater than 50, multiply 100 by 2, if not do nothing. Get the jist?