0
Search view Formula don't work
I Have these Formula for search Ganado Plan but don't work any idea.
let Busqueda := Busqueda;
select Documentos where 'Ganado PLAN' = " " = Busqueda
4 replies
-
Try
let xBusqueda := Busqueda; select Documentos where 'Ganado PLAN' = xBusqueda
Regards John
-
John Halls Suffering with formulas Thanks
-
John Halls
Hi works on Documento and Plano no for Actividad, but when select Documentos and Plano display actividad something wrong ?
let yBusqueda := 'Busqueda Tipo Documentos';
select Documentos where 'Tipo de Documento' = yBusqueda -
Try:
let yBusqueda := text('Busqueda Tipo Documentos');
select Documentos where text('Tipo de Documento') = yBusquedaI'm guessing the order of your choice field is not the same as your searchform or maybe there's a gap in the number sequence. Using the text values should solve this.
Steven
Content aside
- Status Answered
- 2 yrs agoLast active
- 4Replies
- 91Views
-
3
Following