Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi There.
I had a query regarding storing variable values.
What i want to achieve:
Suppose a variable named vID is created.
We assign some value to it Say 'Swtnk02'
i want to store it in some table such that when we change the variable value to 'Pk0012'
the table will consist both Swtnk01 and Pk0012 in it and so on.
I tried doing this but still the data gets updated for the latest Variable value given
UserDetail:Load * Inline [Id,TypeP01,PrincipalP02,PrincipalS01,StudentS02,StudentT01,TeacherT02,Teacher$(vID),$(vType)];
Store UserDetail into [lib://DataFiles/userDetails.qvd](qvd);
Drop table UserDetail;
LOADId,"Type"FROM [lib://DataFiles/userDetails.qvd](qvd);
*found a way