View Single Post
  #2   Report Post  
Posted to free.uk.diy.home,uk.d-i-y
Steve Lupton[_2_] Steve Lupton[_2_] is offline
external usenet poster
 
Posts: 25
Default O T: Spreadsheet help

the_constructor wrote:
Got a little problem trying to sort out a formula for a spreadsheet. Yes,
some of you may think that I should use a different group, but all the
computer groups are not as helpful as this group.

If (C23670) Then Let C31 = (C23*C27)


Hi

You don't say what to do if C23 is not less than 670. Assuming '0' for now:-


=IIF(c23670,c23*c27,0)


IIF works like this:-

iif(something is true, put this value, otherwise put this value)


Steve