Como puedo ocultar 4 tabs (Formularios) en el menú, que no se vean en el Menú, pero ala vez si me funcione acezando de otro Tabs y pueda utilizarlos. o que opciones me dan para que mi herramienta funcione.
Vendria así: Tabs (TABLERO)
FORMULARIO DE VIDA (tabs)
FORMULARIO INCENDIO (tabs)
3.FORMULARIO SALUD (tabs)
4.FORMULARIO AUTO (tabs)
Estos formularios o TAbs no quiero que se vean en el menu, ni en los iconos de abajo del app. como hago. Saludos,
You can find “Show new screen” or “go to tab” in the “action” dropdown list in the right pane, if you have components that allow for actions, such as: buttons, richtext components, images, actions text also inline list.
In principle you need a math column to calculate the time interval against today. I couldn’t find the right info for this.
I see @Jeff_Hager is live now. Maybe he can help you.
If you can get a date backwards from today then you can use a filter to filter the data after that date. I hope my explanation is understandable.
I only see the way from a simple angle. It can also be complex depending on your case.
Hola Jeff, si lo que busco es esto mira. yo meto datos ejemplo del 1 -02-2022 al 28-02-2022 ósea del 1 de febrero al 28 de febrero. configurando la celda (Mes de Registro) con Month(f) es a 1, luego otra Columna (Mes Texto) 1 =enero / 2 febrero, hasta llegar al diciembre. hasta hay estamos ok. el reporte lo puedo sacar por mes. bien pero ahora yo quiero del 1 - 15 como se haría o del 10 al 20. o de la semana del 7 al 13.
The easiest solution would be two date components on your screen that write to user specific columns. Then filter an inline list based on those entered dates.
Hola Jeff, mira no se si lo estoy haciendo bien porque mira como me queda el documento. ya cree las columnas de From / To pero cuando le coloco el filtro solo me agarra asi el Desde
y colocando estas Fechas podría aplicar un Charts para sacar un reporte de barras de Pólizas vendidas de una Fecha a otra fecha. en realidad eso es lo que ando buscando
Looks like you have your filter in the wrong place. Instead of applying the filter to the Date entry component, it should be applied to the inline list, which presumably is on the previous screen?
Which table holds the data that you need for your chart?
Is it the “Vida Emitida” table, or another table?
If it’s another table, you would need to use Single Value columns to take the values from the ‘Desde’ and ‘Hasta’ columns, and apply those to the table that contains the data.
You could then use an if-then-else column to determine if each row in that table falls within the date range.
hola sii es en esta tabla “Vida Emitida” en esta tabla tengo todas las Pólizas emitidas osea facturadas y me gastaría tener la información por medio del charts pero en un rango de fecha.
y me imagino que en la hoja que las coloque tendria que poner un boton que las ejecute cierto. que locura todavia no he pensado eso
Okay, so I guess it’s the first column shown in your earlier screenshot, yes?
I’m not exactly sure what the column names mean, but let’s say for example you need to use the value in the second column (“ComiAuto”). What you could do is create an if-then-else column using the following logic:
If Fecha... is before Desde, then empty (leave blank)
If Fecha... is after Hasta, then empty (leave blank)
Else ComiAuto
If you do that correctly, you should see the ComiAuto value appear for only those rows where the row date is between your selected start and end date.