Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

APP layout

Below is an example of the sheet I need.  I can not figure out how to do this in Qlik.

I have tried pivot table but no luck.

I need to display as below to display a trending by month for all the data on the left.

5 Replies
MK9885
Master II
Master II

Those months you show are coming as an Expression.

I'm not sure but if you can write individual expressions to show the months?

Maybe like this...

sum({<Your Dimension, Month={'Jan'} >}YourDimension)

sum({<Your Dimension, Month={'Feb'} >}YourDimension)

sum({<Your Dimension, Month={'Mar'} >}YourDimension)....

I do not know any other way to show it in different columns, as Month is a dimension as well.

rittermd
Master
Master

It really will depend on your data and how it gets loaded as to what approach you take.

Not applicable
Author

SQL 2 years worthy of data all by date

Not applicable
Author

LIB CONNECT TO 'pharmoresql production (pharmore_rwinkel)';

Billing:
LOAD DayName(Billed) as Billed,
    PharmID,
    FacID,
    RxNo,
    DispenseDt,
    RoNo,
    PatID,
    NDC,
    Qty,
    MOP,
    BillAmt,
    BillMethod,
    SentToAccpac,
    OtherPayorAmt,
    DrugLabelName,
    InvCost,
    PayAmt;
SQL SELECT Billed,
    PharmID,
    FacID,
    RxNo,
    DispenseDt,
    RoNo,
    PatID,
    NDC,
    Qty,
    MOP,
    BillAmt,
    BillMethod,
    SentToAccpac,
    OtherPayorAmt,
    DrugLabelName,
    InvCost,
    PayAmt
FROM FwReports.dbo.Billing

Where billed >= '2015-01-01'
and billed <='2016-08-31'
and FacId <> 'FORMS'
and FacId <> 'MSTR'
and FacId <> 'RETAIL'
and FacId <> 'SAMPLE'
and FacId <> 'TEST'
and FacId <> 'TEST#2'
and FacId <> 'TEST2'
and FacId <> 'TEST3'
and FacId <> 'TRLK'
and FacId <> 'stag';

MK9885
Master II
Master II

Create Month out of your Date field.

Use that month within your expression

As I mentioned above with individual expression for individual month?