Solutions to "Just KNIME It!" Challenge 5

Hello everyone

This is my solution:


https://hub.knime.com/frankcolumbo/spaces/Public/latest/challenge%2020220223

Notes:
The brief said "your solution should be flexible and include flow variables for both the start and the end dates of the fiscal year. ". I have chosen to keep the parameters of a fiscal year in an excel file (which is read by the Excel Reader node). You can put what ever dates and any number of fiscal years you want - the flow will adapt.

Questions:
It took me 3 nodes to get from String: 11/12/2013 to Local Date 2013-12-11. Can anyone please tell me how I can shorten this? I just couldn’t do it (much to my frustration!)

2 Likes

here for a different approach from my previous solution KNIME_challenge_5_b – KNIME Hub

2 Likes

Here’s my solution to Challenge 5. I’m sure there are more elegant approaches, but this works.


REF Challenge 5.knwf (122.4 KB)

2 Likes

Challenge-05.knwf (181.4 KB)


filled_in_data

Definitely not the shortest workflow, but it gets the job done!
All the “Custom Fiscal Year” components add in the missing fiscal years from the table.

Looking forward to how other people made theirs shorter!

1 Like

That’s what I had in my mind! So cool that you can use DateTime data for doing comparisons!
Learned something new about KNIME!

3 Likes

That’s my solution to this week’s challenge. Certainly not as sophisticated as some of your solutions!

Kudos to everybody!

2 Likes

Hi there Frank! Yes, sometimes dealing with dates gives you a headache!

If you want to change your locale, you should use the Locale parameter. See the image, with one node, you can convert to date and change the Locale, in this case I’ve used mine which is ES-PY (yyyy-mm-dd)

Great adaptative solution btw !

3 Likes

Morning y’all!
Here’s my solution. A rather naive approach after seeing others more general solutions. But I think it does the trick. Just a reminder, be careful to use a joiner in the final step here! It could duplicate your initial rows (we have more than one record per date in some cases). Interesting to see how each one have different solutions for the same task.

Challenge No. 5 - Fiscal Years

3 Likes

Hi KNIMERS;

here my solution.

Regards
Stay safe

1 Like

Hi @eamendola

Months are represented with uppercase M, not lowercase. That is because lowercase m is used for minutes. So your proper format is yyyy-MM-dd for your locale.

The other thing that I noticed from your screenshot, though it worked, the proper format of the dates from the file is dd/MM/yyyy as opposed to what you are using in your screenshot. Basically 03 would be dd or MM, while 3 would be d or M. The file contains dates such as 07/02/2013 or 03/08/2012, etc.

1 Like

Hi everyone,

Here is my solution

Thank you,
Ravi

2 Likes

Here is my solution

I made Fiscal date start and duration separate to populate default and minimum values. I reality I would probably read minimum and maximum values from the input table directly. anyways

cheers

2 Likes

Hello Knimers,

here is the link to my solution. justknimeit-5 - Raffaello Barri

RB

2 Likes

I guess that all people think differently. I read between the lines that we can/should/must build a fiscal calendar from the scratch. So my workflow is designed to have two inputs: start date and number of years to build the fiscal calendar and join it with the input dataset using python code (pandas/pandasql should be installed).
KnimeIT_5.knwf (48.0 KB)

2 Likes

Interesting challenge with the time-series :smiley:

Here is my suggestion: Challenge 5 - Date to Fiscal Year – KNIME Hub

Proposed solution adopts 2 approaches:
Approach 1. Based on the FY list provided - only reports identified FY’s.
Approach 2. Based on a component configured by the user - based on a generic FY definition, extrapolates the applicable FY’s for the dates in scope.

2 Likes

Instead of extrapolating the incomplete lookup table I went with a different route: The first row of the lookup table is turned into Flow Variables and from there the fiscal year is calculated with a Java Snippet. This is possible because fiscal periods usually don’t change.

The idea of using Calendar objects turned out more bloated than I expected, but comparing days, months and years in if-else constructs felt wrong. The same logic has also been implemented without code using the Date&Time Difference node.

2 Likes

As always on Tuesdays, here’s our solution to this week’s challenge! :smiley: Very similar to some of the solutions you folks posted – but not to many, which is very cool! We’re again impressed with how y’all think outside the box when approaching these challenges! :star_struck:

See you tomorrow for a new challenge! :fire:

#justknimeit #justknimeit-5

4 Likes

Hi! Here is my take :grinning:

Challenge 5 - Just KNIME It!

2 Likes