This content has been marked as final.
Show 2 replies
-
Re: How to to a JScript Macro?
Gysbert Wassenaar Jan 10, 2013 4:58 AM (in response to Marina Alvarez Ruiz)I don't think you can use a load statement in a macro. But I don't think you need to either. This might do what you want:
MapFC:
mapping LOAD uniBase, FC FROM vConversionUM.qvd (qvd) WHERE UMD='QQ';
T2:
load *,
if(match(uniBase,'LTA','FGS','QQ'), 1, applymap('MapFC',uniBase)) * cantBase as ConvertedToQQ
from ....;
-
Re: How to to a JScript Macro?
Marina Alvarez Ruiz Jan 11, 2013 11:07 AM (in response to Gysbert Wassenaar )Thanks This work because I just compare one field, but if I need compare 3 fields the mapping not work.
I'm new in vbscript and I need how to load a qvd in my vbscript...
Help please
-