Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a data in which i want the calculated field which has to show the current quarter information.
I have looked lots of post in qlik community but nothing is working out for me.Please suggest
At your Dimension in your chart ,
Supress when value is null()
one Quick question, is complete column is going Null??
-Hirish
Yeah everything is showing as null
Did you refer app attached ?
Actually i have created a measure to calculate the current year summation which is shown below.
sum({$<[PROCESSED_DT.autoCalendar.Year] = {'$(=date(max([PROCESSED_DT.autoCalendar.Year]), 'YYYY'))'},ROLLOVER_DESTINATION_TXT={'RTF','RTC'},FULL_DISTRIBUTION_IND={'Y'}>} ROLLED_TO_AMT)
do you have any suggestions to modify the same formula for quarter?
Use this,
IF(Ceil(Month(Today())/3)=Ceil(Month([Processed Date])/3),
sum({$<[PROCESSED_DT.autoCalendar.Year] = {'$(=date(max([PROCESSED_DT.autoCalendar.Year]), 'YYYY'))'},ROLLOVER_DESTINATION_TXT={'RTF','RTC'},FULL_DISTRIBUTION_IND={'Y'}>} ROLLED_TO_AMT)
)
HTH,
Hirish
again null
I have referred your app....but that is not working out for me
Its showing the summation of entire RTA data
Instead of sum() ypu can use only() there
again null