Help with Formula

  • Thread starter Thread starter martins
  • Start date Start date
M

martins

can anyone help

I would like to return a result based on the following scenario

If cell A1 <10% return "0" or if cell A1 >10% sum would then = cel
A3-A4

Hope this makes sens
 
I assumed that it's less than or equal to 10%

=IF(A1<=10%,"0",A3-A4)

VBA Noo
 
Thanks for the help but its not quite returning the result I was lookin
for - probably because I am not explaining very well - I will try agai
-


The result is based on 2 scenarios -

If cell A1 <10% return "0" if >10% the result would be cell A3-A4

sorry if this still confuse
 
If your not worried about it matching 10% then

=IF(A1<10%,"0",A3-A4)

VBA Noo
 

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

Back
Top