Consulta sobre código condicional implementado en macromedia director
Hola tengo la siguiente estructura condicional pero al ejecutarla solo me valida las dos primeras sentencias ... Que tengo mal... Gracias por la ayuda
Private Sub lb_valorcontrato_Click()
If (txt_valoravaluo.Value < txt_valormotor.Value And txt_valorfasecolda) Then
lb_valorcontrato = txt_valoravaluo.Value
Else
If (txt_valormotor.Value < txt_valoravaluo.Value And txt_valorfasecolda) Then
lb_valorcontrato = txt_valormotor.Value
Else
lb_valorcontrato = txt_valorfasecolda.Value
End If
End If
Range("B106").Value = lb_valorcontrato
'Evaluar el valor del contrato a tomar teniendo en cuenta el menor valor de las tres alternativas
End Sub
Private Sub lb_valorcontrato_Click()
If (txt_valoravaluo.Value < txt_valormotor.Value And txt_valorfasecolda) Then
lb_valorcontrato = txt_valoravaluo.Value
Else
If (txt_valormotor.Value < txt_valoravaluo.Value And txt_valorfasecolda) Then
lb_valorcontrato = txt_valormotor.Value
Else
lb_valorcontrato = txt_valorfasecolda.Value
End If
End If
Range("B106").Value = lb_valorcontrato
'Evaluar el valor del contrato a tomar teniendo en cuenta el menor valor de las tres alternativas
End Sub
1 Respuesta
Respuesta de lokiman linares
1