Browsing index pages (4 articles)
↧
total calulation and and total expenses
Hi,In my query im able to get the total hours of every week and total of expenses but im stuck with total hours and total of expenses SELECT DISTINCT e.EmpID, e.EmpName, e.StartDate, e.EndDate,...
View ArticleRe: total calulation and and total expenses
Im still trying to solve this problemWITH CTE_Sum AS (SELECT e.EmpName, DATEADD(ms, SUM(DATEDIFF(ms, '00:00:00.000', e.DailyTotal)), '00:00:00.000') AS TotTime, ee.WeeklyComTotalExpenses FROM...
View ArticleRe: total calulation and and total expenses
Hi emaak,Can you provide the sample data and DDL statements for the tables that are included?
View ArticleRe: total calulation and and total expenses
Please check below are the ddl statements for the two tables and their same dataCREATE TABLE [dbo].[EMPArgentTimesheet]( [ID] [int] IDENTITY(1,1) NOT NULL, [ClientID] [int] NULL, [SubClient]...
View Article
Browsing index pages (4 articles)