Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Tengo un campo de texto que tiene un valor max-age=63072000; includeSubdomains y a veces es max-age=63072000; includeSubdominios; Precarga
Quiero contar juntos la edad máxima = 63072000; includeSubdomains y max-age=63072000; includeSubdominios; preload como OK. ¿Cómo puedo hacer eso?, tengo
Solved! Go to Solution.
Hola @xad, puede usar la función Containsstring() (función CONTAINSSTRING (DAX) - DAX | Microsoft Learn😞
HSTS_OKAY =
IF(
CONTAINSSTRING( 'Table'[Value], "max-age=63072000;includeSubdomains" ) = TRUE(),
"HSTS Good",
"HSTS is NOT OKAY"
)
Esto te dará el siguiente resultado:
¡Buena suerte!
¡¡Gracias Sergii24!! Lo intentaré
Hola @xad, puede usar la función Containsstring() (función CONTAINSSTRING (DAX) - DAX | Microsoft Learn😞
HSTS_OKAY =
IF(
CONTAINSSTRING( 'Table'[Value], "max-age=63072000;includeSubdomains" ) = TRUE(),
"HSTS Good",
"HSTS is NOT OKAY"
)
Esto te dará el siguiente resultado:
¡Buena suerte!