Formula based on source >= 30%

C

ccKennedy

hi,
i need a formula to input $200 if the cell in another workbook is greater
than or equal to 30%.
any ideas?
 
L

Luke M

(Note that 30% = 0.3)
Something like the following:

=IF(A2>=0.3, 200, "Does not meet criteria")
and format cell as currency/accounting to get the dollar symbol to appear
correctly.
 
C

ccKennedy

Brilliant! thank you!

Luke M said:
(Note that 30% = 0.3)
Something like the following:

=IF(A2>=0.3, 200, "Does not meet criteria")
and format cell as currency/accounting to get the dollar symbol to appear
correctly.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
J

JoeU2004

Luke M said:
(Note that 30% = 0.3)
Something like the following:
=IF(A2>=0.3, 200, "Does not meet criteria")

And note that you can write A2>=30%, if you prefer.


----- original message -----
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top