I made an application that when browsing the sharepoint list, the online and offline mode works everything ok
But if you change the data source, by an excel file (.xlsx) inside the ondrive or dropbox, it works only online.
If(Connection.Connected;
ClearCollect(LocalDescriptioProduct;ShowColumns(Product_Description;"Description";"UNIQUE_ID_DESCRIPTION"));;
SaveData(LocalDescriptioProduct; "LDP");;
ClearCollect(LocalProductsAll;ShowColumns(Products_All;"UNIQUE_ID_PRODUCTS";"UNIQUE_ID_Description";"Brand";"Quantity";"Quantity_Sold"));;
SaveData(LocalProductsAll; "LPA");
LoadData(LocalDescriptioProduct;"LDP";true);;
LoadData(LocalProductsAll;"LPA";true))
Same code, connecting in the same tables with the same structure, but Collections are created without the data.
Is it possible to use spreadsheets to create offline applications?