Hi All,
I'm facing a problem in executing the following code snippet :
This means that if tbl_nm (Table Name) starts with FACT but does not end with DM, the MSGBOX should pop up (condition be satisfied).
But somehow it's not working. Can someone help me please??
I'm facing a problem in executing the following code snippet :
Code:
sub strtest()
X = [FACT*]*[!FACT*DM]
tbl_nm = "FACT_TSS_PRDCT_ATTRBTS_ABC"
If tbl_nm Like X Then MsgBox "TRUE"
End Sub
This means that if tbl_nm (Table Name) starts with FACT but does not end with DM, the MSGBOX should pop up (condition be satisfied).
But somehow it's not working. Can someone help me please??