¿Sabes cómo se puede resaltar una sola palabra dentro de un texto?
@DataVizCanvas2 жыл бұрын
Básicamente, puede dividir la oración en tres partes: antes de la palabra de búsqueda, la palabra que resaltará y después de la palabra Una vez que tenga esos tres cálculos, introdúzcalos en la marca de texto y luego coloree el cálculo de "la palabra". Espero que ayude Antes de la palabra de búsqueda: IF CONTAINS([Descripción]," "+[Cuadro de búsqueda]+" ") //en el medio O CONTIENE([Descripción],[Cuadro de búsqueda]+" ") Y // al principio FIND([Descripción],STR([Cuadro de búsqueda]))=1 O CONTIENE([Descripción]," "+[Cuadro de búsqueda]) Y // al final FIND([Descripción],STR([Cuadro de búsqueda]))+LEN([Cuadro de búsqueda])-1=LEN([Descripción]) DESPUÉS LEFT([Descripción],FIND([Descripción],STR([Cuadro de búsqueda]))-1) FINAL La palabra: IF NOT(ISNULL([Pre Word])) DESPUÉS MID([Descripción] FIND([Descripción],STR([Cuadro de búsqueda])), LEN([Cuadro de búsqueda])) FINAL Después de la palabra: IF NOT(ISNULL([Pre Word])) DESPUÉS MID([Descripción], FIND([Descripción],STR([Cuadro de búsqueda]))+LEN([Cuadro de búsqueda]), LEN([Descripción])-LEN([Palabra])-LEN([Palabra anterior])+2) FINAL
@brandontheITguy9 ай бұрын
LOVED this tutorial...one question...is it possible to resize the axis/column? I'm applying this filtering to tickets within our internal system here at work, and it would be most valuable to be able to resize meaning shrink, and expand each column.
@DataVizCanvas4 ай бұрын
You could do that by changing the axis values. Please try and let me know in case of any issues.
@asifbhaihuddani5432 жыл бұрын
Nice tutorial
@DataVizCanvas2 жыл бұрын
Thank you :-)
@dineshchavan22482 жыл бұрын
Thank you sir for great vdo, but how to remove fixed symbol
@DataVizCanvas2 жыл бұрын
Hi Dinesh, which fixed symbols you are referring to?
@vignesh2104 Жыл бұрын
here is a issue we cant control the width
@DataVizCanvas Жыл бұрын
Yes that's the limitation with this method. It will keep all the columns with same width.
@firstname43379 ай бұрын
you explained it very well, but my god tableau is a piece of trash software -- so much garbage to go through just to fully highlight a row
@DataVizCanvas9 ай бұрын
Thanks for your feedback. Hope this functionaly will be added in future releases