Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have one chart , that chart would shows all months data but i need max month data only means one bar chart,
Pleased find the attached one.
See attached example.
Hi,
In your Qlik file add Num field for Month field like
Date:
LOAD Date,
ID,
Year(Date) as Year,
Month(Date) as Month,
NUM(Month) as NumMonth,
Sales
FROM
(ooxml, embedded labels, table is Sheet1);
And in expression use it like
sum({<Year ={$(=max(Year))}, NumMonth ={$(=max(NumMonth))}>}Sales)
Regards
Anand
PFA...
Also you can use same Month field also see the attachment
And use the expression
sum({<Year ={$(=max(Year))}, Month ={$(=Month(Date#(Max(NUM(Month)),'M')))}>}Sales)
Regards
Anand
Hi,
Please refer attached .qvw file.
Thanks
Hi,
PFA.....
Regards,
Nagarjuna
Hi Srinivas ,
If you got your answer.Kindly close this tread.
Regards,
Nagarjuna
Hi nagarjuna,
initially i want to show single bar means max month , after that according to selections i want to show all bars
like below image is showing single month data ..
if i select multiple selection then it will show multiple bars like
Regards
srinivas
You can achieve this,
PFA below atttached,
In that If you did nit select any month it will only max Month data only, if you select months accordingly it give .
_Nagarjuna