Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
My date field is DocDate.
I want to calculate the total Deliveries for today.
My set expression is
Sum({<DocDate={'=$(=Date(Today()))'}>}Delivered_Quantity)
example: Total Delivered Quantity 7000
Delivered Quantity for today 500
It giving me the result as Total Delivered Quantity till today i.e. 7000 but i want result for today i.e. 500
Please help.
Regards,
Priyal
Hi
Try this.
Script:
T:
LOAD Date,
Date(floor(Date),'DD/MM/YYYY') as Date_N,
Delivered_Quantity,
Status
FROM
[C:\Users\XYZ\Desktop\Dummy Data.xlsx]
(ooxml, embedded labels, table is Sheet1);
Your expression in text box :
=sum({<Date_N = {"$(=Date(Today(),'DD/MM/YYYY'))"}>}Delivered_Quantity)
can you please attach the sample data?
Make sure that the DocDate format is the same as the one defined in your Main script section, e.g. DD.MM.YYYY.
You can use the Date function in the set analysis to adjust this, e.g.
Date(Today(), 'DD.MM.YYYY')
Also use double quotes in the set analysis as this is a search string.
PFA.
Sum({<DocDate={"$(=Num(Date(Today())))"}>}QTY)
use this set analysis and make sure your date is in NUM format.
QTY =Delivered_quantity
sorry but not working
Hi
Try this.
Script:
T:
LOAD Date,
Date(floor(Date),'DD/MM/YYYY') as Date_N,
Delivered_Quantity,
Status
FROM
[C:\Users\XYZ\Desktop\Dummy Data.xlsx]
(ooxml, embedded labels, table is Sheet1);
Your expression in text box :
=sum({<Date_N = {"$(=Date(Today(),'DD/MM/YYYY'))"}>}Delivered_Quantity)
Glad to know it helped