Cuestión : Dlookup que consigue error del #name con el subform

Tengo una forma principal con los campos siguientes:
[cumpleaños] - (incorporan la información),
[edad actual] - DateDiff (“yyyy”, [DOB], ahora ())rmat de +Int (Format (ahora (), " mmdd”) (, “mmdd”))
[mes] -
[año] de DatePart (“m”, [DOB]) - el

I de DatePart (“yyyy”, [DOB]) tiene una tabla del tLifeRate con el siguiente: tarifa Amount
<70 $1.45 10,000.00
70 del
Current_Age - 74 $0.90 $6,500.00
75-79 $0.65 $4,500.00
80 $0.44 $3,000.00

I tienen un subform de la vida con un campo de [tarifa] en ellos. ¡Cuando el subform de la vida es activo yo está intentando tener [tarifa] hace un dlookup basado en [current_age] y volver la cantidad de la tarifa que él need.

This es mi función estoy teniendo problema with.
=IIf (formas! ¡fInputRetiree! ¡Current_Age<70, DLookUp (” [tarifa] “, “tLifeRate”,” [Current_Age] = [Forms]! ¡[fInputLife]! ¡[ Current_Age] "),
IIf (formas! ¡fInputRetiree! ¡Current_Age>=70 y fInputRetiree! ¡Current_Age<=74, DLookUp (” [tarifa] “, “tLifeRate”,” [Current_Age] = [Forms]! ¡[fInputLife]! ¡[Current_Age] "),
IIf (formas! ¡fInputRetiree! ¡Current_Age>75 y fInputRetiree! ¡Current_Age<=79, DLookUp (” [tarifa] “,” tLifeRate “,” [Current_Age] = [formas]! ¡[fInputLife del ]! ¡[Current_Age] “),
IIf (formas! ¡fInputRetiree! ¡Current_Age>80, DLookUp (” [tarifa] “,” tLifeRate” del , “[Current_Age] = [formas]! ¡[fInputLife del ]! [Current_Age] “)))))
class= del

Respuesta : Dlookup que consigue error del #name con el subform

Intentar esto


¡=IIf (formas! ¡fInputRetiree_Information! ¡Current_AgeUp<70> (“[tarifa]”, “tLifeRate”,” [Current_Age] = ““y “<70>ee_Information! ¡Current_Age>69 y formas! ¡fInputRetiree_Information! ¡Current_AgeDLookUp<75> (” [tarifa] “, “tLifeRate”,” [Current_Age] =” “y “70-74” y” “"), IIf (formas! ¡fInputRetiree_Information! ¡Current_Age>74 y formas! ¡fInputRetiree_Information! ¡Current_AgeDLookUp<80> (” [tarifa] “, “tLifeRate”,” [Current_Age] =” “y “75-79” y” “"), IIf (formas! ¡fInputRetiree_Information! Current_Age>79, DLookUp (” [tarifa] “, “tLifeRate”,” [Current_Age] =” “y “80” y” '"), 0))))

Usted también necesitará poner

Me.fInputLife.Requery

en el acontecimiento de AfterUpdate del campo de la fecha de nacimiento en su forma principal para poner al día los cambios en su subform de la vida.

A propósito….  Era.
Usted tenía forgotton el “_Information” al referirse a su IE de la forma
¡Formas! ¡el fInputRetiree necesitó ser formas! fInputRetiree_Information

Leigh



Otras soluciones  
 
programming4us programming4us