Thread: help
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
bpeltzer bpeltzer is offline
external usenet poster
 
Posts: 171
Default help

How about creating a lookup table, where the first column is the activity
type and the second column the acceptable response time. Then your formula
becomes
=if(isna(vlookup(s152,TABLE,2,0)),"invalid
type",if(o152<=vlookup(s152,TABLE,2,0),"PASS","FAI L")).

"kiran" wrote:

Hi All,
I want to record a macro which is more than 255 characters, kindly help, my
formula is as follwos

=IF(AND(S152="IncidentLow",O152<=168),"Pass",IF(AN D(S152="IncidentMedium",O152<=24),"Pass",IF(AND(S1 52="IncidentHigh",O152<=8),"Pass",IF(AND(S152="Inc identUrgent",O152<=4),"Pass",IF(AND(S152="RequestL ow",O152<=600),"Pass",IF(AND(S152="RequestMedium", O152<=120),"Pass",IF(AND(S152="RequestHigh",O152<= 40),"Pass")))))))

TIA