As I want to do comparision like below
Code:
Dim rs As DAO.Recordset If rs1![Activity].Value Not Like & '*Prep*'" Then '...do calculations End If
So please can tell me how I can do that type of comparisions.
Thanks
Chandan Kr Sah
Dim rs As DAO.Recordset If rs1![Activity].Value Not Like & '*Prep*'" Then '...do calculations End If
select object_name(parent_obj), name from MSysObjects where xtype ='PK' and parent_obj=(object_id('Admin.Technologies'))
select object_name(parent_obj), name from sysobjects where xtype='PK'
select object_name (parent_obj) ObjectName, name from sysobjects where xtype = ‘PK’ and parent_obj = (object_id(‘Admin.Technologies’))
Dim Dbs As Database Dim rst As DAO.Recordset Set Dbs = CurrentDb Set rst = Dbs.OpenRecordset(ssql)
Leave a comment: