Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Sirs ,
What is wronging in my script ?
error
Try using quotes like:
....Where WildMatch (INPUT_COLUMN_T,'$(vINPUT)') ;
Try using quotes like:
....Where WildMatch (INPUT_COLUMN_T,'$(vINPUT)') ;
try this
INPUT:
LOAD * ,
'ROW'& RowNo() AS SL ,
Capitalize(INPUT_COLUMN) as INPUT_COLUMN_T ;
lOAD * INLINE [
INPUT_COLUMN
sigmax
sigma levers
sigmata inc
cobbe
cob sons
blackfund
blackrazors
tesco
tesla
TESTRA
TORONTO
BANGlore
puner
Alaska
]
Where WildMatch (INPUT_COLUMN,'$(vINPUT)') ; // solution
saludos!!!!
Your search-string is missing the quotes. You could try it in this way:
Where WildMatch (INPUT_COLUMN_T, '$(vINPUT)')
- Marcus