Thanks, that got me halfway there, somehow Import
with CloudObject
didn't automatically recognize .xlsx files:
Import["Imports/data.xlsx", {"Data", 1}]
Import::noelem: The Import element "Data" is not present when importing as ZIP.
Import[CloudObject["Imports/data.xlsx"]]
{"[ContentTypes].xml", "rels\.rels", \
"xl\_rels\workbook.xml.rels", "xl\workbook.xml", \
"xl\sharedStrings.xml", "xl\theme\theme1.xml", "xl\styles.xml", \
"xl\worksheets\sheet1.xml", "docProps\core.xml", \
"docProps\app.xml"}
With this modification I got it work:
Import[CloudObject["Imports/data.xlsx"], {"xlsx", "Data", 1} ]
Thanks for your help :)