Hi, can you help me translate this function into VBA for MS access?
Totally new, I have tried withouth luck. Your help is much appreciated. Once I know whihc objects I need I could take it from there.
Table name: Data
Field1: Platform
Field2: Screenview
Totally new, I have tried withouth luck. Your help is much appreciated. Once I know whihc objects I need I could take it from there.
Table name: Data
Field1: Platform
Field2: Screenview
Code:
Function UpdateColumn
for each field in Table(Data).field1
select case true
case like '*xyz*'
Field2 = 'GoodJob'
case like 'WWW'
Field2 = 'GreatJob'
end select
end function