Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to use a kpi window and always showing me the day after tomorrow .But only that day which also exist in the auto.calendar. Because I don't want to count the weekends.
Like this:
=[deliverydate.autoCalendar.Date]=("$(=Date(Today()+2))")
It doesn't work out though.No returns. but even when it work out would I guess it would count the weekends, which I dont want.
Thanks in advance.
Do you want to show only the day after tomorrow or do you want to use it in another indicator .
if you want to show only the day look at this example :
assume that I have this sample :
Data:
load * inline [
Date,P
17/06/2020,1
18/06/2020,2
19/06/2020,3
20/06/2020,4
];
If I use this Indicators :
=Only({<Date={"$(=Date(Today()+2))"}>} Date)
the output :
you must check date format
Do you want to show only the day after tomorrow or do you want to use it in another indicator .
if you want to show only the day look at this example :
assume that I have this sample :
Data:
load * inline [
Date,P
17/06/2020,1
18/06/2020,2
19/06/2020,3
20/06/2020,4
];
If I use this Indicators :
=Only({<Date={"$(=Date(Today()+2))"}>} Date)
the output :
you must check date format