How would I convert a table of annual values to quarterly? The table is a time series (converted from text values e.g. '2009') mapping a year to different values. Any thoughts appreciated. I'm trying to avoid reading in the data 4 times and melding it together - which I could do but seems ugly.
Ok thanks! I did end up using the 'Cross Join' node with my original table as input in addition to this table generated with 'Table Creator' node:
column1
column2
Q1
3
Q2
6
Q3
9
Q4
12
This gave me four copies of each row. column1 wasn't absolutely necessary but I used column2 for the time shift.
To achieve the quarter end time shift I used the 'Time Shift' node twice in a row. The first shift was -1 Day (to give me year end values) and in the second shift I selected 'Use shift value from column' and used column2 with 'Month' granuarity.