Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!