Power Query Formül Öğesini Güncelle
Contents
[
Hide
]
Kullanım Senaryosu
Veri kaynağı dosyalarının taşındığı ve excel dosyasının dosyayı bulamadığı durumlar olabilir. Bu gibi durumlarda, Aspose.Cells API, Power Query Formula öğesini kullanarak güncelleme seçeneği sunar.PowerQueryFormulaÖğesi kaynak dosyanın konumunu güncellemek için sınıf.
Power Query Formül Öğesini Güncelleme
Aspose.Cells API, Power Query Formül Öğelerini güncelleme yeteneği sağlar. Aşağıdaki kod parçacığı, Excel dosyasındaki veri kaynağı dosya konumununPowerQueryFormulaItem.ValueEmlak. Referansınız için ekli kaynak ve çıktı dosyaları.
Basit kod
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"); |