View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default If a cell = TRUE how do I get the cell to do a sum function

Try one of these:

=(F1="CA")*(I1*0.0875)

=IF(F1="CA",I1*0.0875,0)

Biff

"Mark" wrote in message
...
I'm trying to do a conditional:
This is the end result I'm looking for.

If cell (F1) has a text match for = CA
Then I want cell (L1) to =SUM(I1*.0875)

I have tried IF and ISTEXT
But I need it perform another formula instead of a true false or text
response