Commit 574367c7 authored by 潘栩锋's avatar 潘栩锋 🚴

修复 数据库浏览器导出的excel最大值位置写错了

parent df26d345
......@@ -128,7 +128,7 @@ namespace FLY.Thick.FilmCasting.UI.DbViewer.Core
sheet.Cells["B26"].Formula = $"AVERAGE({thkDataAddress})";
sheet.Cells["D26"].Formula = $"STDEV({thkDataAddress})*2";
sheet.Cells["F26"].Formula = $"MIN({thkDataAddress})";
sheet.Cells["F26"].Formula = $"MAX({thkDataAddress})";
sheet.Cells["H26"].Formula = $"MAX({thkDataAddress})";
}
void SaveToXlsxeStatistics_scan(ExcelWorksheet sheet, DbProfilePack profilePack)
{
......@@ -211,7 +211,7 @@ namespace FLY.Thick.FilmCasting.UI.DbViewer.Core
sheet.Cells["B47"].Formula = $"AVERAGE({stateAddress})";
sheet.Cells["D47"].Formula = $"STDEV({stateAddress})*2";
sheet.Cells["F47"].Formula = $"MIN({stateAddress})";
sheet.Cells["F47"].Formula = $"MAX({stateAddress})";
sheet.Cells["H47"].Formula = $"MAX({stateAddress})";
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment