Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can any one please help me on below requirement
I have a Dashboard default view like below
By selecting [Comparison Date] =11/10/2019 getting below bar chart with 8 as count
By selecting [Comparison Date] =15/10/2019 getting below bar chart with 7 as count
But user wants to see all comparison dates 11/10/2019 AND 15/10/2019 Two bars at a time without selecting any thing from Comparison date as default trend.
Please help me on this.
Please find the below attached application and Excel source file.
Thanks in advance.
Set analysis won't work anymore, try these expressions
Added
=Sum(Aggr(If(Count(ID) = 1 and Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 0, 1, 0), [Comparision Date], ID))
Removed
=Sum({<[Report Date]>} Aggr(If(Count(ID) = 0 and Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 1, 1, 0), [Comparision Date], ID))
Renamed
=Sum(Aggr(
If(Count(ID) = 1 and
Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 1 and
Only(Name) <> Only({<[Report Date]>} If([Report Date] = [Comparision Date], Name))
, 1, 0)
, [Comparision Date], ID))
Could you please help me on this requirement.
In this scenario is there any way to show the Trend without selecting any comparison date.
Thanks in advance.
Set analysis won't work anymore, try these expressions
Added
=Sum(Aggr(If(Count(ID) = 1 and Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 0, 1, 0), [Comparision Date], ID))
Removed
=Sum({<[Report Date]>} Aggr(If(Count(ID) = 0 and Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 1, 1, 0), [Comparision Date], ID))
Renamed
=Sum(Aggr(
If(Count(ID) = 1 and
Count(DISTINCT {<[Report Date]>} If([Report Date] = [Comparision Date], ID)) = 1 and
Only(Name) <> Only({<[Report Date]>} If([Report Date] = [Comparision Date], Name))
, 1, 0)
, [Comparision Date], ID))
Thanks a lot Bro.... Its working @sunny_talwar
Hope you are doing well.
Few days back you have provided the solution for this bar chart.