Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)
If Sh.name = "Daily TEMPLATE" And Sh.Column = 2 And Sh.Row > 8 And Sh.Row < 841 Then
Cancel = True
frmFront.Show
End If
End Sub
Private Sub frmFront()
'Get row number
irow = ActiveCell.Row
'Where CELL_MIDATE is a global cons
txtDate.Value = Range([b]CELL_MIDATE[/b] & irow).Value
End Sub
Private Sub Workbook_SheetBeforeDoubleClick(ByVal Sh As Object, ByVal Target As Range, Cancel As Boolean)
If Sh.name = "Daily TEMPLATE" And Sh.Column = 2 And Sh.Row > 8 And Sh.Row < 841 Then
Cancel = True
with frmFront
.txtDate.Value = Range(CELL_MIDATE & Sh.row).Value
.Show
end with
End If
End Sub