I think I have a very simple problem here but can't get the syntax right.
I have an Excel workbook that contains several single-cell Named Ranges. I'd like to read the values of the cells into output variables in Power Automate Desktop. In the first example, I use a Read from Excel worksheet action to retrieve the values of the named cells in the Name TmpInvoiceNumber into the Power Automate output variable InvoiceNumber.

Because named ranges can refer to more than one cell, InvoiceNumber is a DataTable. What I really want is just the single value that was in the Named cell, so I then use a Set variable action to attempt to extract the top left cell from the DataTable into a new output variable InvoiceNumberValue.
In the Value box of the action I have used the formula
=InvoiceNumber[0][0]
This doesn't work. It tells me that there are unexpected characters (i.e. a syntax error). What am I doing wrong?

Thanks in advance.