Forum Discussion
cheskafausto
8 years agoFrequent Visitor
Showing a graph based on current time plus 15mins
Hi everyone, In relation to this post below : https://community.powerbi.com/t5/Desktop/Showing-graph-based-on-current-time/td-p/316366 I am trying now to create a graph that shows the next...
- Anonymous8 years ago
cheskafausto,
Please change your code to the following:
#"custom step"=Table.SelectRows(#"Name of Previous Step", each ([Datetime]) <=(DateTime.LocalNow()+#duration(0,0,15,0)))
Regards,
Lydia
Anonymous
8 years agoNot applicable
cheskafausto,
Please change your code to the following:
#"custom step"=Table.SelectRows(#"Name of Previous Step", each ([Datetime]) <=(DateTime.LocalNow()+#duration(0,0,15,0)))
Regards,
Lydia
cheskafausto
8 years agoFrequent Visitor
Yes! Adding this function has worked! Thanks a bunch! :D