Hello,
I've got a select query in which I've created a formula to work out if a 'deferral date' should be provided for an order line.
A: IIf(DateDiff("m",[Instalment Posting Date],[Start date]) Is Null And DateDiff("m",Date(),[Start date])>=1,[Start Date],"")
B: IIf(DateDiff("m",[Instalment Posting Date],[Start date]) Is Not Null And DateDiff("m",[Instalment Posting Date],[Start date])>=1,[Start Date],"")
Deferral Date: IIf([a]="",,[a])
However i cannot 'unshow' A/B in my select query which is not needed nor do any further data changes to the field as the calculation is in the select query rather then the table.
I'd like to change it so that A/B are worked out via update queries on the source table - is this possible? I tried to do it without much success!
Thanks,
Tom
I've got a select query in which I've created a formula to work out if a 'deferral date' should be provided for an order line.
A: IIf(DateDiff("m",[Instalment Posting Date],[Start date]) Is Null And DateDiff("m",Date(),[Start date])>=1,[Start Date],"")
B: IIf(DateDiff("m",[Instalment Posting Date],[Start date]) Is Not Null And DateDiff("m",[Instalment Posting Date],[Start date])>=1,[Start Date],"")
Deferral Date: IIf([a]="",,[a])
However i cannot 'unshow' A/B in my select query which is not needed nor do any further data changes to the field as the calculation is in the select query rather then the table.
I'd like to change it so that A/B are worked out via update queries on the source table - is this possible? I tried to do it without much success!
Thanks,
Tom