So I have a pop up form and there is a check box that person filling in the information has to check or leave unchecked if the pressure vessel is active or not. And if it is active I want it to insert the symbol below
<TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=64 border=0><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 15.75pt" height=21><TD class=xl72 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 48pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15.75pt; BACKGROUND-COLOR: transparent" width=64 height=21>■</TD></TR></TBODY></TABLE>
and if it is inactive I want this symbol <TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=64 border=0><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 15.75pt" height=21><TD class=xl72 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 48pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15.75pt; BACKGROUND-COLOR: transparent" width=64 height=21>□</TD></TR></TBODY></TABLE>both of these symbols can be found under the times new roman font when you go into symbols
I kind of have an idea, but this is as far as I got
If chbactive.Value Then
'CheckBox1 is ticked
.Cells(nextEmptyRow, "AA").Font.Name = "Times New Roman"
.Cells(nextEmptyRow, "AA").Value = ? 'solid black box in cell'
Else
'CheckBox1 is not ticked
.Cells(nextEmptyRow, "AA").Font.Name = "Times New Roman"
.Cells(nextEmptyRow, "AA").Value = ? 'Empty box in cell'
End If
I tried just copying and pasting the symbol into the code where the question mark is but it didn't work. Any help would be great
<TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=64 border=0><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 15.75pt" height=21><TD class=xl72 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 48pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15.75pt; BACKGROUND-COLOR: transparent" width=64 height=21>■</TD></TR></TBODY></TABLE>
and if it is inactive I want this symbol <TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=64 border=0><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 15.75pt" height=21><TD class=xl72 style="BORDER-RIGHT: #ece9d8; BORDER-TOP: #ece9d8; BORDER-LEFT: #ece9d8; WIDTH: 48pt; BORDER-BOTTOM: #ece9d8; HEIGHT: 15.75pt; BACKGROUND-COLOR: transparent" width=64 height=21>□</TD></TR></TBODY></TABLE>both of these symbols can be found under the times new roman font when you go into symbols
I kind of have an idea, but this is as far as I got
If chbactive.Value Then
'CheckBox1 is ticked
.Cells(nextEmptyRow, "AA").Font.Name = "Times New Roman"
.Cells(nextEmptyRow, "AA").Value = ? 'solid black box in cell'
Else
'CheckBox1 is not ticked
.Cells(nextEmptyRow, "AA").Font.Name = "Times New Roman"
.Cells(nextEmptyRow, "AA").Value = ? 'Empty box in cell'
End If
I tried just copying and pasting the symbol into the code where the question mark is but it didn't work. Any help would be great