VARIABLES EN FORMULAS

26/11/2005 - 00:21 por Marvin | Informe spam
CONSULTA AL GRUPO...SALUDOS

COMO SE DEBEN INCLUIR EN X FORMULA UNA VARIABLE

POR EJEMPLO, NECESITO BUSCAR UNA PALABRA DENTRO DE UNA CADENA DE TEXTO, LA
FORMULA YA LA TENGO DEFINIDA Y FUNCIONA PARA UN TEXTO ESPECÍFICO, PERO QUIERO
QUE ME PREGUNTE ANTES QUE PALABRA DESEO BUSCAR Y ESTO ES POR MEDIO DE UN
INPUTBOX ASIGNADO A UNA VARIABLE, ESTA VARIABLE QUIERO AGREGARLA A LA
FORMULA, ME EXPLICO???.

MI FORMULA ES

IF(AND(ISERROR(SEARCHB(""CHINA"",RC[-1],1)),LEN(RC[-5])<28,RC[-5]<>""Interfaz"",RC[-5]<>""""),"""",""CHINA"")

MI VARIABLE SERIA CHINA, COMO AGREGO LA VARIABLE A LA FORMULA???.. GRCS
 

Leer las respuestas

#1 Héctor Miguel
26/11/2005 - 04:08 | Informe spam
hola, Marvin !

COMO SE DEBEN INCLUIR EN X FORMULA UNA VARIABLE...
MI FORMULA ES
IF(AND(ISERROR(SEARCHB(""CHINA"",RC[-1],1)),LEN(RC[-5])<28,RC[-5]<>""Interfaz"",RC[-5]<>""""),"""",""CHINA"")
MI VARIABLE SERIA CHINA, COMO AGREGO LA VARIABLE A LA FORMULA?.. GRCS



asumiendo que 'varible' ya ha sido 'tomada' de algun inputbox... prueba con...
f(and(iserror(searchb(""" & variable & """,rc[-1],1)),len(rc[-5])<28,rc[-5]<>""interfaz"",rc[-5]<>""""),"""",""" & variable & """)

saludos,
hector.

p.d.
[pregunta]: por que usas searchB en lugar de un 'simple' search ?
-> [hablando de china]... realmente necesitas interactuar con el juego de caracteres para el lejano oriente ?

[sugerencia]: al ab/uso con el uso de solo mayusculas... equivale a GRITAR !!!
-> en mensajes de correo electronico :))

Preguntas similares