Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8627

Object Definition in the universe

$
0
0

Hi,

I have a requirement where i need to count the request ID's based on Created date and Completed date e.g. on 1/1/2013 10 request ID's were created and 12 were closed . Following table shows how i want the results to be shown

 

Created Date         || Count(Request ID's created)    ||     Count (Request ID's completed)

Jan 2013                               3                                                10

Feb 2013                             10                                                 5

-------

----

Aug 2014                             20                                                50

 


Everything is coming from the same table and The way i am doing in the report is creating a Query 1 with "Request Created date field and count of ID's for  "request ID's created " and similarly   Query 2 with Request completed Date and Count of ID's for "request ID's completed" and merge the request created date and request completed date on report level to bring both count measures in one table and  it works fine.


But i want to know if it is possible to create a measure objects in the universe such as "Count(request ID's created)" and "Count(request ID's completed)" so i can just bring it together in one query and Count(request ID's created)  gets calculated using the created date

and Count(request ID's completed) gets calculated using the completed date and e.g. if i bring created date along with two measure as shown in the table above , it shows the right results so i dont have to do merge dimension and 2 queries on the report level !!!

 

At the end of the day i am trying to replicate something as follows in the universe :

/*

With 

Created_count AS ( Select created_date,  Count(ID)  as "ID created count " from Table1 group by Created_date),                  --subquery 1

Completed count AS ( Select completed_date,Count(ID) as "ID completed count " from Table1 group by Completed_date),     --- subquery 2

 

Select created_date,ID created count, ID completed count from Table 1 where created date=completed date

*/

 

Let me know if something like this is possible !

 

 

Thanks in advance,

 

Sheikh


Viewing all articles
Browse latest Browse all 8627

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>