Aggiorna elemento formula Power Query
Contents
[
Hide
]
Scenario di utilizzo
Potrebbero verificarsi casi in cui i file di origine dati vengono spostati e il file excel non è in grado di individuare il file. In tali casi, Aspose.Cells API offre la possibilità di aggiornare l’elemento Formula Power Query utilizzando ilPowerQueryFormulaItem class per aggiornare la posizione del file di origine.
Aggiornamento dell’elemento della formula di Power Query
Aspose.Cells API offre la possibilità di aggiornare gli elementi della formula di Power Query. Il seguente frammento di codice illustra l’aggiornamento della posizione del file di origine dati nel file Excel utilizzando l’estensionePowerQueryFormulaItem.Valueproprietà. I file di origine e di output allegati per riferimento.
Codice d’esempio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Working directories | |
string SourceDir = RunExamples.Get_SourceDirectory(); | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
Workbook workbook = new Workbook(SourceDir + "SamplePowerQueryFormula.xlsx"); | |
DataMashup mashupData = workbook.DataMashup; | |
foreach (PowerQueryFormula formula in mashupData.PowerQueryFormulas) | |
{ | |
foreach (PowerQueryFormulaItem item in formula.PowerQueryFormulaItems) | |
{ | |
if (item.Name == "Source") | |
{ | |
item.Value = "Excel.Workbook(File.Contents(\"" + SourceDir + "SamplePowerQueryFormulaSource.xlsx" + "\"), null, true)"; | |
} | |
} | |
} | |
// Save the output workbook. | |
workbook.Save(outputDir + "SamplePowerQueryFormula_out.xlsx"); |