Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 MS Access 数据库并在 access 中创建一个表单。
我有一个字段 total_hrs。在这里我需要帮助。
我只想填写分钟,它应该转换为小时。
为此,我正在使用 onlost focus total_hrs
您可以使用ABS(imin/60)计算小时数,其中 imin 是 int。
ABS(imin/60)
sub Calc Dim iHrs as int dim iMin as int iHrs = ABS(iMin/60) End sub
您可以将此代码放在 onlost fouce even 或 even after
不看表单或代码很难提供帮助。