ho una macro che esporta un determinato foglio del mio documento in csv, in una determinata cartella.
Vorrei avere la possibilità di inserire il percorso di salvataggio su google drive come nell'esempio, ma mi da errore. Mi potete aiutare?
Grazie mille
Codice: Seleziona tutto
Sub ExportToCSV
Dim args(2) as new com.sun.star.beans.PropertyValue
fname = "https://drive.google.com/file/d/14pV108DTOAlpIeOJPCtQ-Q0jObhQxqOI/view?usp=sharing"
cFilterOptions = "44,34,ANSI,1,,0,false,true,true"
oDoc = ThisComponent
oSheet = oDoc.Sheets.getbyname("db")
args(0).Name = "FilterName"
args(0).Value = "Text - txt - csv (StarCalc)"
args(1).Name = "FilterOptions"
args(1).Value = cFilterOptions
oDoc.StoreToURL( ConvertToUrl( fname ), args() )
End Sub