Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Im trying to do a conditional:
This is the end result Im 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 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(F1="CA",I1*0.0875,"NA")
MH "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 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(F1="CA",I1*8.75%,"")
-- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "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 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you both very much!!!
"Bob Phillips" wrote: =IF(F1="CA",I1*8.75%,"") -- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If true, paste, then next cell | Excel Discussion (Misc queries) | |||
IF function...cell ref is a formula so True is retd when False sh | Excel Worksheet Functions | |||
Function to return True/False if all are validated as True by ISNU | Excel Worksheet Functions | |||
IF statements if the value is True it changes the cell colour? | Excel Worksheet Functions | |||
If "xxxx" is in a cell, then TRUE | Excel Discussion (Misc queries) |