Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
@output_row = @input_row;
$output_row = sprintf(
'sheet "%s", row %u',
$_globals{tFileInputExcel_1}{CURRENT_SHEET_NAME},
1 + sequence($_globals{tFileInputExcel_1}{CURRENT_SHEET_NAME}, 1, 1)
);
Q. When I do the Control-Space Bar, I do not see the CURRENT_SHEET_NAME attribute. How do I go about looking for these attributes? What component file will be the one I need to look at?
<RETURNS>
<RETURN NAME="NB_LINE" TYPE="INTEGER" AVAILABILITY="AFTER" />
<RETURN NAME="CURRENT_SHEET" TYPE="STRING" AVAILABILITY="FLOW" />
<RETURN NAME="CURRENT_SHEET_NAME" TYPE="STRING"
AVAILABILITY="FLOW" />
<RETURN NAME="CURRENT_SHEET_POSITION" TYPE="STRING"
AVAILABILITY="FLOW" />
</RETURNS>
Q. Also why does something simple like this does not work for me. It gives me zero for all rows.
$output_row = sprintf('%u', $_globals{tFileInputExcel_1}{NB_LINE});