Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Sorry!
I'm novice and do not able to solve one task.
There is table with events of warehouse income and outcome events. There is also coloumn with warehose content for this date.
But i want to analyse on daily basis
Script for reading
MAX_Output:
LOAD Склад, //WH
Код, //Code
Наименование, //Name
Дата, //Date
[Приход РУБ], //income price
[Расход РУБ], //outcome price
[Запас РУБ] //WH content
FROM
(ooxml, embedded labels, table is history);
LOAD
date(today()-recno(),'DD.MM.YY') as TransDate
AUTOGENERATE today() - MakeDate(2012, 1, 1);
Table (cutted)
Склад | Код | Наименование | Дата | Приход РУБ | Расход РУБ | Запас РУБ |
60012 | 1886-4081 | Прессформа | 01.01.2012 | 55271,74 | ||
60001 | 3424901802 | Клемма ф10 | 01.01.2012 | 0 | ||
60001 | 3424901802 | Клемма ф10 | 01.06.2012 | 25445 | 25445 | |
60001 | 3424901802 | Клемма ф10 | 08.06.2012 | 25445 | 0 | |
60001 | 3424901802 | Клемма ф10 | 08.04.2013 | 25445 | 25445 | |
60001 | 3424901805 | Клемма ф40 | 01.01.2012 | 0 | ||
60001 | 3424901805 | Клемма ф40 | 01.06.2012 | 29292 | 29292 | |
60001 | 3424901805 | Клемма ф40 | 08.06.2012 | 29292 | 0 | |
60012 | 551416 | Втулка Отливка | 01.01.2012 | 1276,7836 | ||
60001 | 551417 | Подшипник Отливка | 01.01.2012 | 479,00727 | ||
60001 | 551883 | Зажим | 22.03.2012 | 1160,235 | 10442,115 | |
60001 | 551883 | Зажим | 13.04.2012 | 1740,3525 | 8701,7625 | |
60001 | 551883 | Зажим | 07.09.2012 | 3480,705 | 5221,0575 | |
60001 | 551883 | Зажим | 17.09.2012 | 3480,705 | 1740,3525 | |
60012 | 552140 | Рычаг | 01.01.2012 | 1950,78 | ||
60012 | 552140 | Рычаг | 07.09.2012 | 650,26 | 1300,52 | |
60001 | 552237 | Шестерня отливка | 01.01.2012 | 588,364 | ||
60001 | 552464 | Кронштейн | 01.01.2012 | 299,78 | ||
60001 | 552464 | Кронштейн | 15.05.2012 | 299,78 | 0 | |
60001 | 552464 | Кронштейн | 16.10.2012 | 899,34 | 899,34 | |
60001 | 552464 | Кронштейн | 25.10.2012 | 899,34 | 0 | |
60001 | 552532 | Держатель конт. отливка | 01.01.2012 | 10624,959 | ||
60001 | 552532 | Держатель конт. отливка | 19.01.2012 | 5902,755 | 4722,204 | |
60001 | 552532 | Держатель конт. отливка | 07.05.2013 | 2361,102 | 2361,102 | |
60001 | 552606 | Кронштейн отливка | 01.01.2012 | 2790,575 | ||
60001 | 552608 | Держатель отливка | 01.01.2012 | 7325,5 | ||
60001 | 552608 | Держатель отливка | 19.01.2012 | 7325,5 | 0 | |
60001 | 552608 | Держатель отливка | 16.10.2012 | 3822 | 3822 | |
60001 | 552608 | Держатель отливка | 20.11.2012 | 3822 | 0 | |
60001 | 552608 | Держатель отливка | 20.05.2013 | 3822 | 3822 | |
60014 | 551883 | Зажим | 22.03.2012 | 1160,235 | 10442,115 | |
60014 | 551883 | Зажим | 13.04.2012 | 1740,3525 | 8701,7625 | |
60014 | 551883 | Зажим | 07.09.2012 | 3480,705 | 5221,0575 | |
60014 | 551883 | Зажим | 17.09.2012 | 3480,705 | 1740,3525 |
Want to obtain something like this one:
Hi Andrey, If you want analyze only on daily basis, You dont need a calender table:
Just Transform data Income & Out come WH Contet convert into numbers.
Please find the attached qvw for reference.
If I am understanding correctly, you are already analyzing on daily basis, but instead of a bar chart you could use a line chart.
Hi Luis, I am using line chart.
Sorry!
I didn't noted that WH content is only for specified Code. Not for all WH!
That is mean, that SUM for one day will not take in to account WHcontent of Codes which do not have operation in this day.
To have right values of SUM for each day i need to add for this day WH content of all Codes, because of this i want to make script or formula to build time series of WH content for each Code & for each day.