Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How can i acheive this ,during loading
Load EmployeeID, sum(Actualhrs)+sum(Billedhrs)as Totalhrs resident PPMS_PROJECTRESOURCES;
Do you want this?
Load EmployeeID,
RangeSum(Actualhrs, Billedhrs) as Totalhrs
Resident PPMS_PROJECTRESOURCES;
Or this:
Load EmployeeID,
Sum(Actualhrs) + Sum(Billedhrs) as Totalhrs
Resident PPMS_PROJECTRESOURCES
Group By EmployeeID;
Hi,
you can try it with preceeding load,
load EmployeeID,sum(Actualhrs)+sum(Billedhrs) as Totalhrs Group By EmployeeID;
LOAD * INLINE [
EmployeeID, Actualhrs, Billedhrs
1, 5, 6
2, 7, 9
];
--surendra
Exactly....what i want ... thank u very much..
Hi Praveen Kumar,
please close the thread if you got the relevant one.
--surendra