Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I try to run this line:
IF (FileName() = $(vFileString), 'OK', 'Error in FileName') AS MSG,
but i get an error that a ')' is expected
Thx
Chris
Try with
IF (FileName() = '$(vFileString)', 'OK', 'Error in FileName') AS MSG
Rgds,
Joachim
Try with
IF (FileName() = '$(vFileString)', 'OK', 'Error in FileName') AS MSG
Rgds,
Joachim
many thx!