I thought that i had used 'with' to refer to values in a table
where the table has only 1 record (and never more than 1)
i have this:
Code:
With tbeCostAdderPCT 'valid table name
If .AdderPct_Tl_override Then 'valid field name <-THIS IS WHERE THE ERROR OCCURS
...
Else
dblAdderTl_MarkUps = (.MarkupPct_dist + .MarkupPct_contr) * (1 + dblAdderTl_Contingent) 'also valid names
....
but i'm getting error "424": object required; which i don't think i had before (?)
is this something that i had never been able to do? or am i missing something this time ?
as always, with much appreciation in advance,
m.