Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I have a question about the loop in QV. Original I have the date variable, how to expand 12 times of the date starting from the original month+4? You can find the example below, the final table is what I want.
Anyone could help? Thanks!
Original table:
Final table
In script
Load
ID,
date,
score,
Date(AddMonths(Date#(date, 'MM/YYYY'), 3 + IterNo()), 'MM/YYYY') AS date1
Resident OriginalTable
While IterNo() <= 12;
Hope it helps