Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Clasificación entre tiempos

Hola, estoy teniendo problemas para hacer una columna que devuelve T1 T2 o T3 dependiendo de la hora en que se hizo

De 00:00 a 5:59 T3

6:00 a 13:59 T1

14:00 a 21:59 T2

22:00 a 23:59 T3

¿Tal vez alguien pueda darme una luz?

Gracias de antemano !! 🙂

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hola @renatod1991 ,

Pruebe este código para crear una columna calculada:

Columna ?
VAR _time á TIME(HOUR('Table (2)'[Column1]); MINUTE('Tabla (2)'[Columna1]); SEGUNDO('Tabla (2)'[Columna1]))

RETURN IF(_time >- TIME(0;0;0) && _time <-TIME(5;59;0); "T3";
IF(_time >- TIME(6;0;0) && _time <-TIME(13;59;0); "T1";
IF(_time >- TIME(14;0;0) && _time <-TIME(21;59;0); "T2";
IF(_time >- TIME(22;0;0) && _time <-TIME(23;59;0); "T3"))))
Ricardo


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

2 REPLIES 2
camargos88
Community Champion
Community Champion

Hola @renatod1991 ,

Pruebe este código para crear una columna calculada:

Columna ?
VAR _time á TIME(HOUR('Table (2)'[Column1]); MINUTE('Tabla (2)'[Columna1]); SEGUNDO('Tabla (2)'[Columna1]))

RETURN IF(_time >- TIME(0;0;0) && _time <-TIME(5;59;0); "T3";
IF(_time >- TIME(6;0;0) && _time <-TIME(13;59;0); "T1";
IF(_time >- TIME(14;0;0) && _time <-TIME(21;59;0); "T2";
IF(_time >- TIME(22;0;0) && _time <-TIME(23;59;0); "T3"))))
Ricardo


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Anonymous
Not applicable

¡Funcionó! Muchas gracias Ricardo, God Speed

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.