The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Soy nueva en la app y Quiero modelar datos de análisis de laboratorios, en la data tengo análisis cada hora. He intentado hacer tabla calendario pero no me permita ir más allá (es decir visualizar por hora). Alguna sugerencia o recomendación?
Solved! Go to Solution.
Hi @Dianaluz1 ,
Please refer to these posts:
how to build a calendar table with date and time;
Date-table: How to add 24 datetimes per day;
Has anyone created datetime table using QueryEditor or DAX?
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Dianaluz1 ,
Please refer to these posts:
how to build a calendar table with date and time;
Date-table: How to add 24 datetimes per day;
Has anyone created datetime table using QueryEditor or DAX?
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Dianaluz1 , If you want to Analyze data both at Date and time level.
First Separate Date time
Date =DateTime.Date([datetime]) // in Dax [Datetime].date
Time= DateTime.Time([datetime]) // in DaX [Datetime].time
Create a date and time table and join date and time with those and analyze
https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/