Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hola comunidad terngo un problema.
tengo una columna de hora y eso lo necesito poner en 3 turnos
turno uno es de 7:00am a 3:00pm
turno dos es de 3:00pm a 10:00pm
turno tres es de 10:00pm a 7:00am
podrían ayudarme cvon la condificon o orientarme como es porfvor
Solved! Go to Solution.
Hi @Ahmedx @maria_fernanda ,
@Ahmedx The DAX side you provided seems to be misspelled here:
It should be
TIME(23,59,59)
?
Best Regards,
Dino Tao
Turno =
if(
[hour] >= "07:00" && [hour] < "15:00", "turno 1",
if([hour] >= "15:00" && [hour] < "22:00", "turno 2",
if([hour] >= "22:00" && [hour] < "07:00", "turno 3",BLANK()
)))
pls try this
ESTA ES LA SOLUCION CORRECTA YA VALIDE LA INFOMACION Y ES CORRECTA MUCHAS GRACIAS
Hi @Ahmedx @maria_fernanda ,
@Ahmedx The DAX side you provided seems to be misspelled here:
It should be
TIME(23,59,59)
?
Best Regards,
Dino Tao
MUCHAS GRACIAS DE ECHO ERA ESE PROBLEMA
por que en el horaro de las 11 no me toma ningun turno ?
Share sample pbix file to help you.
Try, create new column
Turno =
if(
[hour] >= "07:00" && [hour] < "15:00", "turno 1",
[hour] >= "15:00" && [hour] < "22:00", "turno 2",
[hour] >= "22:00" && [hour] < "07:00", "turno 3",BLANK()
)
me aparece este error
Turno = if( [hour] >= "07:00" && [hour] < "15:00", "turno 1", if([hour] >= "15:00" && [hour] < "22:00", "turno 2", if([hour] >= "22:00" && [hour] < "07:00", "turno 3",BLANK() )))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
87 | |
65 | |
50 | |
45 |
User | Count |
---|---|
217 | |
88 | |
81 | |
65 | |
56 |