Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a table which contains data from quarters but not year total. 2016Q4, 2017Q1 and so on.
Can I merge the 2016Q1,q2,q3, q4 to a "2016" using the LOAD statement?
You should be able to... do you mind sharing your current script?
Yes , try like this
left(Quater_feild,4) as Year
"Yes we can".
It should look something like this:
Load
someKeyField,
sum(someData),
year
From source
group by year, someKeyField
;