We use cycle counting for physical inventory. Each part number is assigned a three digit cycle count code where the first digit is the number of times the part is counted each year (1-4), the second digit is the month it is counted for the first time and the last digit is the week of the month it is counted for the first time. Our numbers range from 111 to 434 (not all numbers in that range are used.)
For any weekly cycle count I don't have an issue, I select the cycles for that week and get the count sheets.
I need to create a report that shows, by week, which parts will be counted. The 1## numbers will only appear in one week of the year, the 2## numbers will appear twice, the 3## three times and the 4## four times.
I tried creating a formula that assigned a value that I grouped on:
if {INVIDX.CYCCNT} in [111.00, 211.00, 311.00, 411.00]
then "01-01 Jan Week 1"
else if {INVIDX.CYCCNT} in [112.00, 212.00, 312.00, 412.00]
then "01-02 Jan Week 2"
else if {INVIDX.CYCCNT} in [113.00, 213.00, 313.00, 413.00]
then "01-03 Jan Week 3"
[continues on to the end of the year]
This formula only returns values the first time a cycle count code matches the "in" clause. So when a code comes around again(such as 411 which gets counted in the 1st week of January, April, July and October) I want it to be listed on each of the appropriate weeks.
How do handle this so that 411 appears in all four groups as well as all the other 2##, 3## and 4## items?
"The problems we face today cannot be solved by the minds that created them."
--Albert Einstein
For any weekly cycle count I don't have an issue, I select the cycles for that week and get the count sheets.
I need to create a report that shows, by week, which parts will be counted. The 1## numbers will only appear in one week of the year, the 2## numbers will appear twice, the 3## three times and the 4## four times.
I tried creating a formula that assigned a value that I grouped on:
if {INVIDX.CYCCNT} in [111.00, 211.00, 311.00, 411.00]
then "01-01 Jan Week 1"
else if {INVIDX.CYCCNT} in [112.00, 212.00, 312.00, 412.00]
then "01-02 Jan Week 2"
else if {INVIDX.CYCCNT} in [113.00, 213.00, 313.00, 413.00]
then "01-03 Jan Week 3"
[continues on to the end of the year]
This formula only returns values the first time a cycle count code matches the "in" clause. So when a code comes around again(such as 411 which gets counted in the 1st week of January, April, July and October) I want it to be listed on each of the appropriate weeks.
How do handle this so that 411 appears in all four groups as well as all the other 2##, 3## and 4## items?
"The problems we face today cannot be solved by the minds that created them."
--Albert Einstein