PDA

View Full Version : Solved: USING THE "IF" FUNCTION IN A WORD TABLE



Greg
06-10-2006, 09:02 PM
I am constructing various Userforms which partly utilise the "IF" function in a table.

One of these is: =IF(D14<=$7,500.00, $92.20, $242.20). In this example there are only two results possible depending on the value of D14.

However, I can't remember how to add in a further variable (in the same equation) to state that if D14 is greater than $25,000.00 then the result is $386.00.

Can anyone refresh my memory on this?

Greg.

mdmackillop
06-11-2006, 04:44 AM
Replace the last term with another If function
eg =IF(D14<=$7,500.00, $92.20, if(D14>$25,000.00,$386.00,$242.20))

fumei
06-11-2006, 05:51 AM
"Posting Quick Reply - Please Wait"
- VBAX forum

:rotflmao:

mdmackillop
06-11-2006, 05:57 AM
Glad you like it Gerry!

fumei
06-11-2006, 06:14 AM
Yup...cracked me up. Such...such...such a delicate touch you have. So here I go clicking "Post Quick Reply".

Greg
06-11-2006, 05:46 PM
To MD McKillop

Thanks for your help on the IF function. It works perfectly now.