The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi all,
I'm experimenting with data from my own agenda using the Microsoft Exchange datastream.
This dataset contains multiple meetings with start and end dates by the hour, so what i would like to do is check wich meetings are currently active for today in this hour.
Normally i would go for something like:
if(Calendar[startdate] = today(); "active"; "not active")
But this solution only checks the date, and not the datetime.
Anyone got an idea on how to achieve this?
Thanks in advance!!!
Stan
Solved! Go to Solution.
Hi @StanTheMan
Please see the below.
VAR dateTime = NOW() VAR TimeStart = DATEVALUE(dateTime) + TIME(INT(TIMEVALUE(dateTime) * 24), 0, 0) VAR TimeEnd = TimeStart + TIME(1, 0, 0) RETURN IF(Calendar[startdate] => TimeStart && Calendar[startdate] < TimeEnd, "active", "not active")
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @StanTheMan
The below code will give you current meetings
VAR CurrentDateTime = NOW() RETURN IF(Calendar[startdate] => CurrentDateTime && Calendar[enddate] < CurrentDateTime, "active", "not active")
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @StanTheMan
Please see the below.
VAR dateTime = NOW() VAR TimeStart = DATEVALUE(dateTime) + TIME(INT(TIMEVALUE(dateTime) * 24), 0, 0) VAR TimeEnd = TimeStart + TIME(1, 0, 0) RETURN IF(Calendar[startdate] => TimeStart && Calendar[startdate] < TimeEnd, "active", "not active")
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
69 | |
64 | |
53 |