Hi Please help,
Requirement:
By default if i open the dashboard the KPI data should show Calls Data, else it should show as 0)
By default it should show calls data while opening the dashboard with out selecting filter on Type. How to do.
This should do it
=Num(Count({<SAMPLETYPE *= {'Calls'}, AC = {'P'}>} AC)/Count({<SAMPLETYPE *= {'Calls'}>} ID), '##.%')
Not entirely sure, but may be this if you want it to show 0 when WI is selected in Type field
=Sum({<Type *= {'Calls'}>} Values)
Hi Sunny,
actually I have given the sample. actual my expression is like this
I have fiter Sampltype as Data and Calls as the Calls expression I have written as
=num(count({<SAMPLETYPE={'Calls'},AC={'P'}>}AC)/count({<SAMPLETYPE={'Calls'}>}ID),'##.%')
By default while opening the dashboard I need to show the Sampletypefield Calls data,
After that if I click on the Sampletype as Data then it should as zero as they don't have data for that column , so can you please help me on this.
I have wriiten your condition in my qvw , but it is not coming up.
Can you please help.
=if(SAMPLETYPE *= 'Calls',num(count({<SAMPLETYPE={'Calls'},AC={'P'}>}AC)/count({<SAMPLETYPE={'Calls'}>}ID),'##.%'),'0%')
This should do it
=Num(Count({<SAMPLETYPE *= {'Calls'}, AC = {'P'}>} AC)/Count({<SAMPLETYPE *= {'Calls'}>} ID), '##.%')
tHANKS YOU ITS WORKED