View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default help with Formulas/Functions

Assuming data running in A2 down

1. In F2:
=IF(ISNUMBER(A2),A2*5%,"")

2. In G2:
=IF(AND(ISNUMBER(A2),TEXT(B2,"mmmyy")=TEXT(TODAY() ,"mmmyy")),A2*40%,"")

Select F2:G2, copy down as far as required
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Candace" wrote:
I need help creating two formulas. I'm hoping this can be done with some
variation of a function, such as IF, SUMIF, etc. I'd like to avoid using VBA
if at all possible.

1. For the first formula: if there is an amount in column A, multiply that
amount by 5% and place it in column F

2. Second formula: if the date value in column B is within the current
month, multiply the amount in column A by 40% and place it in column G