asked on
Dim SKUid As String
SKUid = [Forms]![frmHomePage]![SKU]
If DCount(1, "SKUS", "IsNull([SkuLength] WHERE [SKUs].[SKU] = SKUid)") > 0 Then
MsgBox "Has nulls"
Else
MsgBox "Complete!"
End If
ASKER
ASKER
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
TRUSTED BY
This assumes that SKUId is a number
Kelvin