Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
thick-casting
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
thick-casting
Commits
574367c7
Commit
574367c7
authored
Aug 17, 2023
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复 数据库浏览器导出的excel最大值位置写错了
parent
df26d345
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ExcelOuput.cs
...ting/FLY.Thick.FilmCasting.UI.DbViewer/Core/ExcelOuput.cs
+2
-2
No files found.
Project.FLY.Thick.FilmCasting/FLY.Thick.FilmCasting.UI.DbViewer/Core/ExcelOuput.cs
View file @
574367c7
...
...
@@ -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
[
"
F
26"
].
Formula
=
$"MAX(
{
thkDataAddress
}
)"
;
sheet
.
Cells
[
"
H
26"
].
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
[
"
F
47"
].
Formula
=
$"MAX(
{
stateAddress
}
)"
;
sheet
.
Cells
[
"
H
47"
].
Formula
=
$"MAX(
{
stateAddress
}
)"
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment