hello,
Here is my query.
select 'MNOP' as [Workstream],
count([Functional Specs]) as [Total Functional Specifications] ,
count([Test Case]) as [Total Functional Specifications Covered ]
from
(Select distinct r.requirement_name as [Functional Specs],
tt.[Test Name] as [Test Case]
from
requirementinfo r
left outer join
(select * from trace t
inner join TestPlan Tp
on t.trace_element_name = tp.[Test Name]) as tt
on r.requirement_id = tt.root_element_id)
Now the raw data is returned is
FunctionalSpec Test case
ABC
DEF MNO
ADK
ADM BOL
ADM BMD
But as per the query i get a distinct count of 5 and it should show only 4. Is there a way to work this out in access?
Help needed asap.
Please assist.
Thanks,
Here is my query.
select 'MNOP' as [Workstream],
count([Functional Specs]) as [Total Functional Specifications] ,
count([Test Case]) as [Total Functional Specifications Covered ]
from
(Select distinct r.requirement_name as [Functional Specs],
tt.[Test Name] as [Test Case]
from
requirementinfo r
left outer join
(select * from trace t
inner join TestPlan Tp
on t.trace_element_name = tp.[Test Name]) as tt
on r.requirement_id = tt.root_element_id)
Now the raw data is returned is
FunctionalSpec Test case
ABC
DEF MNO
ADK
ADM BOL
ADM BMD
But as per the query i get a distinct count of 5 and it should show only 4. Is there a way to work this out in access?
Help needed asap.
Please assist.
Thanks,