Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I am trying to implenting the calendar view and Gantt chart using Pivot table.
To display the data in Gantt chart i have created IntervalMatch table that is displaying data in it as expected, but when i trying to display
in Straight table or Pivot table values showing very high Count.
i couldn't rectify it.
Can any one suggest the solution.
Please find attached QVW.
Thanks
Rajesh
i have commented IntervalMatch table and 1st DateBridge table , Uncommented the DateBridge1 tab in Script
Please find attached qvw
I might not have understood the use case for implementing interval match if this is not what you wanted (look below)... Let's look a number 'CHG0053904' which has a start date of 09/02/2018 and end date of 28/06/2018.. if you look by the start and end date... this should come up on June 8th 2016... but the solution without interval match doesn't include it on June 8th... On the other hand the solution with interval match does include it on June 8th because June 8th fall between the start and end date. This is true for many other numbers... now if you don't want this to be included on June 8th... why did you implement interval match here?
As my Client wants to view in Both Pivot table and Gantt chart,
i have implemented IntervalMatch table because to achive Gantt chart in the Sheet2 (1st attched Application v1.2)
Please u can see n check.
in my case not working Both requirements only 1 requirement working by modification of the model.
if u want to reload the application with QVDs i can share.
I don't think I need the qvd... all I need to understand is why do you think it is working on Sheet2, but not on Sheet1? To me, I am getting 237 numbers for June 8th 2018 on Sheet2... just like Sheet1....
Look at this screenshots... is this not what you see?
This is not i want to show the count in Pivot table.
Then what do you want? Can you elaborate?
May be try this
=If(aggr(count(DISTINCT If(Date = start_date, number)), Week, WeekDay)>2,
Aggr(count(DISTINCT If(Date = start_date, number)), Week, WeekDay) & If(GetFieldSelections(Source)='Change',' Change(s)', If(GetFieldSelections(Source)='Release',' Release(s)', ' Record(s)')),
'')
can u suggest that how can i achieve two requirements (Pivot chart and Gantt chart )
should i change the model.
Did you get a chance to look at my response below
Thank you very much Sunny, it solved the issue.