Forum Discussion
kart4u
Microsoft
Mar 06, 2019Parameterized functions to use for calculating and output the flag
I am trying to write a function that returns whether it is working hour or not based on the timestamp. It goes like this
let IsWorkingHours = (timestamp:datetime)
{
let hour = hourofday(t...
Vino55
Microsoft
Mar 07, 2019I don't think parameterized function is supported as of now.
You can however create non-parameterized function, save it and then reference it.