Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Quarter into month

Can anyone tell how to convert quarter quota into montlyquota? I am attaching excel for reference. there is Salesperson id and quarter date with quota.

3 Replies
oknotsen
Master III
Master III

Divide the number by 3.

May you live in interesting times!
sunny_talwar

Are you looking for a specific output?

MarcoWedel

Hi,

one solution to create three months out of one quarter value could be:

QlikCommunity_Thread_211004_Pic1.JPG

table1:

CrossTable (Salesperson, Quota)

LOAD * FROM [https://community.qlik.com/servlet/JiveServlet/download/1006109-218416/quota.xlsx] (ooxml, embedded labels, table is Sheet1);

table2:

LOAD MonthName(F1,IterNo()-1) as Month,

    Salesperson,

    Money(Quota/3) as Quota

Resident table1

While IterNo()<=3;

DROP Table table1;

hope this helps

regards

Marco