Marquin said:
Sales of products in february are expected to grow by 1.56% over January
sales, create a formula. Example : January 143
Well, this __is__ m.p.e.NEWUSERS. So a "dumb" question is not
necessarily "homework". (By the way, there are no dumb question.)
To answer your question: if 143 is in B1, then in B2 you might put:
=B1*(1+1.56%)
If you want an integer like 143, you can adjust the format (click
Format > Cells > Number > Number and select 0 Decimal Places). Or you
might change the formula as follows:
=round(B1*(1+1.56%), 0)
There are pros and cons for each method, and each can be the better
answer in different circumstances.