Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, I´m trying to create an expression that shows the values for the last reload date... I´ve been trying this: sum(if(Date=date(reloadtime()), Liq)). It seems to be wrong. I don´t want to work with today() cause there are no values if the script has not been executed today. Any idea? Thanks in advance! Michael
Can you use Sum(If(Date=Date(Makedate(Year(Reloadtime()),Month(Reloadtime()),Day(Reloadtime())),Liq))
Hi,
It looks like formating error of date.
Please use sum(if(Date(Date,'DD-MM-YYYY')=Date(Reloadtime(),'DD-MM-YYYY'),Liq)). Hope this will work.
unfortunately it doesn´t work either. i still get 0 as result. but if i make sum(if(Date=Today(), Liq)) i get the correct result (I executed the script today)
Hi,
Can you check the format of date field whether it is in timestamp or normal date?
Celambarasan
Can you use Sum(If(Date=Date(Makedate(Year(Reloadtime()),Month(Reloadtime()),Day(Reloadtime())),Liq))
thanks so much!!