Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Having trouble with dates and set analysis - the below does not resolve:
sum({< day={ date(my_date,'WWWW')}> } value)
Anyone know how to do date formatting inside set analysis?
All function inside set analysis must be used with $ expansion:
sum({< day={'$(=date(my_date,'WWWW'))'}> } value)
let me know
Pay attaention to date formats
All function inside set analysis must be used with $ expansion:
sum({< day={'$(=date(my_date,'WWWW'))'}> } value)
let me know
Pay attaention to date formats
Try:
sum({<day = {'$(=date(my_date,"WWWW"))'}>}value)
thanks, this is what I was looking for