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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Agrupar datos de fecha y hora por fecha y hora para el gráfico de líneas de comparación

Hola a todos

Agradezco si puede ayudarme con este informe.

Tengo los datos sin procesar como se muestra a continuación. Adjunto en Excel. Me gustaría crear una tabla y un gráfico de líneas para mostrar la comparación de la diferencia entre el recuento real e incremental en la agrupación de fechas seleccionada por hora.

jenas6423_0-1600653716227.png

Mesa:

jenas6423_1-1600653808383.png

Gráfico de líneas:

jenas6423_2-1600653825110.png

Actualmente, el procesamiento de datos se realiza en SQL, he creado una vista para él, lo que resultó en la tabla folllwing.

jenas6423_3-1600653905541.png

Sin embargo, al usar esta vista, no pude incluir segmentaciones de datos para mi selección de fecha, ya que resumirá la hora por el intervalo de fechas que he seleccionado. ¿Alguien puede aconsejar cómo hacerlo? ¿O cómo combinar la fecha y la hora para el gráfico de líneas?

Por favor, aconséjese. Agradezco si alguien puede ayudar.

Los datos sin procesar se pueden descargar aquí:

https://drive.google.com/file/d/10ZVdWG5MDYNRnqN22getpe7UNYiZJf_X/view?usp=sharing

Consulta de vista SQL:

SELECT Prodline, IIF(CONVERT(time, update_time, 101) >- '00:00:00' Y CONVERT(time, update_time, 101) < '08:03:00' , CONVERT(DATE, update_time - 1, 101) , CONVERT(DATE, update_time, 101)) As , Date ,
IIF(CONVERT(time, update_time, 101) >' '08:03:00' Y CONVERT(time, update_time, 101) <' '20:03:00' , '1st' , '2nd') AS Shift,
DATEPART(hora,update_time) COMO Hora,
MAX([incremental_val]) - MIN([incremental_val]) + 1 AS Inc,
MAX([actual_val]) - MIN([actual_val]) + 1 AS Actual,
FORMAT((MAX([actual_val]) - MIN([actual_val]) + 1) - (MAX([incremental_val]) - MIN([incremental_val]) + 1),'+0;-0') Como Diff
DE [MES]. [dbo]. [PlanDataRecord]
GRUPO por IIF(CONVERT(time, update_time, 101) > á '00:00:00' Y CONVERT(time, update_time, 101) < '08:03:00' , CONVERT(DATE, update_time - 1, 101) , CONVERT(DATE, update_time, 101)),
DATEPART(hour,update_time), Prodline, IIF(CONVERT(time, update_time, 101) >' '08:03:00' AND CONVERT(time, update_time, 101) <' '20:03:00' , '1st' , '2nd')

la columna de fecha se modifica según el intervalo de tiempo de desplazamiento.

He acumulado el recuento real e incremental para el gráfico de líneas:

Acc_Actual de la casa de los
CALCULAR (
SUM ( 'Progress_Status'[Actual] ),
FILTRO (
ALLSELECTED(Progress_Status) ,
'Progress_Status'[Hora] <- MAX ( 'Progress_Status'[Hora])
)
)
Acc_Incremental de la casa de los
CALCULAR (
SUM ( 'Progress_Status'[Inc] ),
FILTRO (
ALLSELECTED(Progress_Status) ,
'Progress_Status'[Hora] <- MAX ( 'Progress_Status'[Hora])
)
)
Mis cortadoras:

Capture.JPG

2 REPLIES 2
amitchandak
Super User
Super User

@jenas6423 . No muy claro.

Separe el tiempo y luego dos opciones que se me ocurra

Time (Hora) [Actualizar fecha y hora].time

1. Utilice el tiempo en el eje y la cortadora

2. Cree una tabla de tiempo y tenga una hora allí. y usarlo para el análisis :https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/

Anonymous
Not applicable

Hola

¿Sabe agrupar por línea de producción, cada hora con la columna real max(actual_val) - min(actual_val) new ?

Por favor, aconséjese. Gracias.

saludos.

Jenas

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors