Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Folk,
Please can any body suggest me how to calculate sum of Last 12 month value at a back end where i am having field:
Date | Plant | Material | Value |
regards,
Urgent
Test:
Load
Date,
Plant,
Material,
Value
From YourFileName;
Load
Plant, Material, SUM(Value) as TotalValue
Resident Test
Where Date >= AddYears(Today(),-1) and Date <= Today()
Group By Plant, Material;
Dear Manish, I am having a data for last 5 year ,
so how can we do it for last 5 Years,
it will onl do for Current Month & Year,
use this...