Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
;with cte as (select PK, count(Address) over (partition by SomeField) as cntAddresses from MailingList2)
update cte set SS = 'true' where cntAddresses > 1
DoCmd.RunSQL "; with cte as (select PK, count(Address) over (partition by Address) as cntAddresses from MailingList2) update cte set SS = 'true' where cntAddresses > 1"