Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
hopkinsc
Partner - Specialist III
Partner - Specialist III

Show figures for last day of month

Hi all,

I have the following fields..

ClosingStock

Date

MonthYear

Store

i have a pivot table with dimensions of:

Store and MonthYear (Pivoted along the top)

and an expression of Sum(ClosingStock)

The above expression sums the closing stock for each month, but i only want to to give me the closing stock figure for the last day of the month, not everyday of the month..

I have attached a sample. any help would be appreciated.

Thanks

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Use script like below..

Data:

Load

  *,

  IF(Date = MonthEndDate,1,0) as Flag;

LOAD Store,

     Date,

     FLOOR(MonthEnd(Date)) as MonthEndDate,

     MonthYear,

     ClosingStock

FROM

Sample.xlsx

(ooxml, embedded labels, table is Sheet1);

=========================

Now create a pivot table

Dimensions = Date and Store

Expressions = SUM({<Flag = {1}>}ClosingStock)

View solution in original post

7 Replies
rustyfishbones
Master II
Master II

Have tried adding this to the script

MonthEnd(Date) as EndofMonth

hopkinsc
Partner - Specialist III
Partner - Specialist III
Author

Hi Alan,

I have added that but how to i get the figure needed in my chart?

Not applicable

Try this expression

 

=FirstSortedValue(ClosingStock,-Date)

Not applicable

Check the attachment

tresesco
MVP
MVP

May be like attached sample:

First Dim: Store

Second Dim(Calculated): Month(Date)

Expression: FirstSortedValue( ClosingStock, -Date)

MK_QSL
MVP
MVP

Use script like below..

Data:

Load

  *,

  IF(Date = MonthEndDate,1,0) as Flag;

LOAD Store,

     Date,

     FLOOR(MonthEnd(Date)) as MonthEndDate,

     MonthYear,

     ClosingStock

FROM

Sample.xlsx

(ooxml, embedded labels, table is Sheet1);

=========================

Now create a pivot table

Dimensions = Date and Store

Expressions = SUM({<Flag = {1}>}ClosingStock)

its_anandrjs

Load your table for max date of the month that is month end try the below code for this

Data:

LOAD Store,

     Date,

     MonthYear,

     ClosingStock,

     MonthEnd(Date) as EndofMonth

FROM

(ooxml, embedded labels, table is Sheet1);

Final:

LOAD

MonthYear,

MaxString(Date) as MonthEndDate

Resident Data

Group By MonthYear;

And in pivot table

Dimension1:- Store

Dimension2:- MonthEndDate

Expression:- Sum(ClosingStock)

Regards