Power Query 数式項目の更新
Contents
[
Hide
]
利用シーン
データ ソース ファイルが移動され、Excel ファイルがファイルを見つけられない場合があります。このような場合、Aspose.Cells API は、Power Query Formula 項目を更新するオプションを提供します。PowerQueryFormulaItemクラスを使用して、ソース ファイルの場所を更新します。
Power Query 数式項目の更新
Aspose.Cells API は、Power Query 数式アイテムを更新する機能を提供します。次のコード スニペットは、Excel ファイル内のデータ ソース ファイルの場所を更新する方法を示しています。PowerQueryFormulaItem.Value財産。参照用に添付されたソース ファイルと出力ファイル。
サンプルコード
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"); |