Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Problem:
I want to load a qvd-document with a condition.
If the month is january then he has to load qvd1 else an other qvd.
If(month=1,
Load ...From qvd1
else
Load ... From qvd2
)
I don't know the right syntax for QlikView.
it will be something like this:
if month(today()=1 then
table:
load * from qvd1.qvd;
else
table:
load * from qvd2.qvd;
end if
it will be something like this:
if month(today()=1 then
table:
load * from qvd1.qvd;
else
table:
load * from qvd2.qvd;
end if
Thanks Michael!