View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Piscator Piscator is offline
external usenet poster
 
Posts: 10
Default if 200 and <300 formula

One way is with two IF statements. logically reads:
If (A1200 then If A1<300 then A1, else 0), else 0)

=IF(A1200,IF(A1<300,A1,0),0)