Question : Access VBA set all values of a Yes/No field to no

Hi

I have a continuous for with a Yes/No field called "Invoice". I want to set all values to "No" with VBA code. How do I do this?

Answer : Access VBA set all values of a Yes/No field to no

so, the subquery has to be done using Model Range ...
1:
2:
3:
4:
SELECT t.[Life Cycle] AS [Life Cycle], t.[Total vehicles] AS [Maximum Total Vehicles], t.[model range]
FROM QryLifeCycleModels t
WHERE (((t.[Total vehicles])=(select max(i.[Total vehicles]) from QryLifeCycleModels i where i.[model range] = t.[model range] )));
Random Solutions  
 
programming4us programming4us