vba_pj_0001_auto_date
Const init_info As String = "InitInfo"
Const end_row_op As Integer = 100 'tmp
Const end_row_holiday As Integer = 100 'tmp
Const sheet_name_op As String = "Project_YY" 'tmp
Const sheet_name_holiday As String = "Holiday" 'tmp
Const column_index_task As Integer = 3 'tmp
Const column_index_cost As Integer = 5 'tmp
Const column_index_start_date As Integer = 6 'tmp
Const column_index_end_date As Integer = 7 'tmp
Const column_index_man As Integer = 8 'tmp
Const column_index_sort As Integer = 9 'tmp
Const column_index_holiday As Integer = 2 'tmp
Const column_index_workday As Integer = 3 'tmp
Function is_date_in_col(ByVal sheet_name As String, ByVal col As Integer, ByVal value As Date) As Integer
Dim end_row As Integer
end_row = end_row_holiday 'tmp get_row_range
Dim test_row As Integer
Dim ret As Integer
is_date_in_col = 0
Dim col_date As Date
For test_row = 3 To end_row
col_date = Sheets(sheet_name).Cells(test_row, col).value
If value = col_date Then
is_date_in_col = test_row
Exit For
End If
Next
End Function
Function is_date_in_holiday_list(ByVal in_date As Date) As Boolean
If is_date_in_col(sheet_name_holiday, column_index_holiday, in_date) <> 0 Then
is_date_in_holiday_list = True
Else
is_date_in_holiday_list = False
End If
End Function
Function is_date_in_workday_list(ByVal in_date As Date) As Boolean
If is_date_in_col(sheet_name_holiday, column_index_workday, in_date) <> 0 Then
is_date_in_workday_list = True
Else
is_date_in_workday_list = False
End If
End Function
Function is_satday_or_sunday(ByVal in_date As Date) As Boolean
Dim wd As Integer
wd = Weekday(in_date)
If wd = vbSunday Or wd = vbSaturday Then
is_satday_or_sunday = True
Else
is_satday_or_sunday = False
End If
End Function
Function get_next_workday(ByVal wd As Date) As Date
wd = wd + 1
While True
If is_date_in_holiday_list(wd) Then
wd = wd + 1
ElseIf is_date_in_workday_list(wd) Then
get_next_workday = wd
Exit Function
ElseIf is_satday_or_sunday(wd) Then
wd = wd + 1
Else
get_next_workday = wd
Exit Function
End If
Wend
End Function
Function calc_end_date(ByVal start_date As Date, ByVal cost_from_begin As Double, ByRef end_date As Date, ByRef cost_used As Double)
end_date = start_date
cost_used = cost_from_begin
While cost_from_begin > 1
cost_from_begin = cost_from_begin - 1
cost_used = cost_used - 1
end_date = get_next_workday(end_date)
Wend
End Function
Function get_next_task(ByRef row_edit As Integer) As Boolean
get_next_task = False
Dim in_row As Integer
in_row = row_edit
Dim new_sort As Integer
new_sort = 0
Dim in_sort As Integer
in_sort = Sheets(sheet_name_op).Cells(in_row, column_index_sort).value
Dim target_sort As Integer
Dim tmp_sort As Integer
target_sort = 32767
For i = 3 To end_row_holiday
tmp_sort = Sheets(sheet_name_op).Cells(i, column_index_sort).value
If tmp_sort > in_sort Then
get_next_task = True
If tmp_sort < target_sort Then
target_sort = tmp_sort
row_edit = i
End If
End If
Next
End Function
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column <> column_index_start_date Then
Exit Sub
End If
Dim cost_used As Double
cost_used = 0
Dim row_edit As Integer
row_edit = Target.Row
Dim row_edit_cost As Double
row_edit_cost = Sheets(sheet_name_op).Cells(row_edit, column_index_cost).value
Dim start_date As Date
start_date = Sheets(sheet_name_op).Cells(row_edit, column_index_start_date).value
'If start_date = "" Then
' MsgBox "have not input start date"
' Exit Sub
'End If
'if start_date is not workday then error
cost_from_begin = row_edit_cost + cost_used
Dim end_date As Date
end_date = start_date
calc_end_date start_date, cost_from_begin, end_date, cost_used
Sheets(sheet_name_op).Cells(row_edit, column_index_end_date).value = end_date
'next edit row
While get_next_task(row_edit)
start_date = end_date
If cost_used >= 1 Then
start_date = get_next_workday(start_date)
cost_used = cost_used - 1
End If
Sheets(sheet_name_op).Cells(row_edit, column_index_start_date).value = start_date
calc_end_date start_date, cost_from_begin, end_date, cost_used
Sheets(sheet_name_op).Cells(row_edit, column_index_end_date).value = end_date
Wend
End Sub
schedule.csv
No.,TaskName,,Cost,StartDate,EndDate,Man,Sort
1,TaskX,,3,,,,
2,,SubX1,1,2022/1/26,2022/1/27,Gu,2
3,,SubX2,2,,,Li,
4,TaskY,,5,,,,
5,,SubY1,2,,,Rui,
6,,SubY2,2,2022/1/24,2022/1/25,Gu,1
7,,SubY3,1,,,Rui,
8,TaskZ,,8,,,,
9,,SubZ1,3,,,Li,
10,,SubZ2,2,2022/1/29,2022/1/30,Gu,3
11,,SubZ3,3,,,Rui,
vba_pj_0001_auto_date的更多相关文章
- TCP/IP笔记(1)
TCP/IP 背景和介绍 上世纪 70 年代,随着计算机技术的发展,计算机使用者意识到:要想发挥计算机更大的作用,就要将世界各地的计算机连接起来.但是简单的连接是远远不够的,因为计算机之间无法沟通.因 ...
随机推荐
- SpringCloud GateWay网关(入门)
1.介绍 强烈推荐,看官网文档 Spring Cloud Gateway ①简介 Cloud全家桶里有个重要组件:网关 SpringCloud Gateway基于WebFlux框架 WebFlux底层 ...
- Vue框架:7、Node环境搭建,Vue-cli,es6导出、导入语法,跨域问题解决方法,小练习
前端开发之Vue框架 一.Node环境搭建 什么是Node或NodeJS: node js是一门后端语言 JavaScript只能运行在浏览器中,因为浏览器中有他的解释器环境 基于谷歌浏览器的v8引擎 ...
- C#:开发一个winform窗体程序,实现强势股票池的数据获取。(需对接第三方接口,目前可免费使用)
写在前面:短暂的接触过一段时间的股票市场,只能说A股真的太能杀了! 开发这个工具的初衷呢,是和几个好友在每日做"慈善"后,突发奇想:如果能实时获取当前股市里强势的股票就好了,因为这 ...
- Cesium viewer.extend 五个拓展(五)
2023-01-09 1.viewerDragDropMixin 一个mixin,它为查看器小部件添加了对CZML文件的默认拖放支持. czml即为json,但json不一定为czml:如同geojs ...
- JZOJ 【2020.11.30提高组模拟】剪辣椒(chilli)
题目大意 给出一棵 \(n\) 个节点的树,删去其中两条边 使得分出的三个子树大小中最大与最小的差最小 分析 先一边 \(dfs\) 预处理出以 \(1\) 为根每个点的 \(size\) 然后按 \ ...
- 2022 CSP-S 游记
\(9.26\):开坑. 没报 J 组主要是因为 J 比较垃圾,去抢小朋友的一等没什么意思. 初赛 刚拿到试卷就直接懵了,这 tm 是给人做的题?宇宙射线是什么奇妙东西,还有基数排序我根本不会啊,这个 ...
- cdq 分治学习笔记
CDQ 分治是一种很玄学的东西. Part 0 引子 相信大家都会归并排序,又都知道归并排序求逆序对怎么求的 如果连归并求逆序对都不会那你为什么要学 cdq 分治阿喂 void merge_sort( ...
- 11款Linux数据恢复工具!
转载:<Linux就该这么学> - 必读的Linux系统与红帽RHCE认证免费自学书籍 (linuxprobe.com) 11款最棒的Linux数据恢复工具发布啦! | <Linux ...
- 9.【go-kit教程】go-kit集成Prometheus
在 Go kit 中集成 Prometheus 进行 API 监控可以帮助开发人员更好地了解系统的性能和行为,提高系统的可观察性和可靠性.下面是一个简单的示例,演示如何在 Go kit 中集成 Pro ...
- 我做的FFmpeg开源C#封装库Sdcb.FFmpeg
我做的FFmpeg开源C#封装库Sdcb.FFmpeg 写在前面: 该主题为2022年12月份.NET Conf China 2022我的主题,项目地址:https://github.com/sdcb ...