Reputation: 535
I have a function that outputs a table:
let my_function = (InputDate: datetime){....}
What I would like to do is apply this function on a range and combine the result as in:
range date_X from ago(7d) to now() step 1d
| project my_function (date_X)
Any ideas? I tried many things but ended up with only code errors
Upvotes: 1
Views: 959